seek.c 118 B

123456789
  1. #include <u.h>
  2. #include <libc.h>
  3. vlong
  4. seek(int fd, vlong offset, int whence)
  5. {
  6. return lseek(fd, offset, whence);
  7. }