lseek.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       lseek.c (167B)
       ---
            1 #include <errno.h>
            2 #include <unistd.h>
            3 #include "syscall.h"
            4 
            5 off_t lseek(int fd, off_t offset, int whence)
            6 {
            7         return syscall(VXSYSLSEEK, fd, offset, whence, 0, 0);
            8 }
            9