__stdio_seek.c 137 B

1234567
  1. #include "stdio_impl.h"
  2. #include <unistd.h>
  3. off_t __stdio_seek(FILE *f, off_t off, int whence)
  4. {
  5. return __lseek(f->fd, off, whence);
  6. }