vx32

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