vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

fcntl.c (112B)


      1 #include "syscall.h"
      2 
      3 int fcntl(int fd, int cmd, int arg)
      4 {
      5 	return syscall(VXSYSFCNTL, fd, cmd, arg, 0, 0);
      6 }
      7