fcntl.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) 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