tell.c 145 B

12345678910
  1. #include <errno.h>
  2. #include <unistd.h>
  3. #include <syscall.h>
  4. off_t tell(int);
  5. off_t tell (int fildes)
  6. {
  7. return lseek (fildes, 0, SEEK_CUR);
  8. }