home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / tell.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-08  |  183 b   |  12 lines

  1. #include <unistd.h>
  2. #include <syscall.h>
  3.  
  4. static inline
  5. _syscall3(off_t,lseek,int,fildes,off_t,offset,int,origin)
  6.  
  7. off_t
  8. tell (int fildes)
  9. {
  10.   return __lseek (fildes, 0, SEEK_CUR);
  11. }
  12.