home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / dos / io / tell.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-04  |  236 b   |  13 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <errno.h>
  4. #include <io.h>
  5. #include <dpmi.h>
  6. #include <unistd.h>
  7.  
  8. off_t
  9. tell(int _file)
  10. {
  11.   return lseek(_file, 0, SEEK_CUR);
  12. }
  13.