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

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <time.h>
  3. #include <go32.h>
  4. #include <libc/farptrgs.h>
  5.  
  6. unsigned long
  7. rawclock(void)
  8. {
  9.   static unsigned long base = 0;
  10.   unsigned long rv;
  11.   rv = _farpeekl(_dos_ds, 0x46c);
  12.   if (base == 0)
  13.     base = rv;
  14.   return rv - base;
  15. }
  16.