home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / OS9_Unix.lzh / DEFS / SYS / timeb.h < prev    next >
Text File  |  1992-09-01  |  154b  |  14 lines

  1. /* sys/timeb.h */
  2.  
  3. #ifndef __TIMEB__
  4. #define __TIMEB__
  5.  
  6. struct timeb {
  7.     time_t    time;
  8.     unsigned short millitm;
  9.     short timezone;
  10.     short dstflag;
  11. };
  12.  
  13. #endif
  14.