seek.c 139 B

123456789
  1. #include "lib9.h"
  2. #include <sys/types.h>
  3. #include <fcntl.h>
  4. vlong
  5. seek(int fd, vlong where, int from)
  6. {
  7. return lseek(fd, where, from);
  8. }