home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Entertainment / MacMud / Unix / sys⁄timeb.h < prev    next >
Encoding:
Text File  |  1988-09-01  |  199 b   |  13 lines  |  [TEXT/????]

  1. /*    @(#)timeb.h 1.2 86/10/07 SMI; from UCB 4.2 81/02/19    */
  2.  
  3. /*
  4.  * Structure returned by ftime system call
  5.  */
  6. struct timeb
  7. {
  8.     time_t    time;
  9.     unsigned short millitm;
  10.     short    timezone;
  11.     short    dstflag;
  12. };
  13.