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