home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  140 b   |  10 lines

  1. /*
  2.  * Structure returned by ftime system call
  3.  */
  4. struct timeb {
  5.     time_t    time;
  6.     unsigned short millitm;
  7.     short    timezone;
  8.     short    dstflag;
  9. };
  10.