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 / time.h < prev    next >
C/C++ Source or Header  |  1992-09-29  |  346b  |  17 lines

  1. #include <time.h>
  2. /*
  3.  * Replacement for BSD <sys/time.h>
  4.  * because Ultrix screws it up.
  5.  */
  6. /* $Id: time.h,v 1.2 1992/04/25 08:22:14 sjg Exp $ */
  7.  
  8. struct timeval {
  9.     long tv_sec;        /* time_t */
  10.     long tv_usec;        /* microsex */
  11. };
  12.  
  13. struct timezone {
  14.     int tz_minuteswest;    /* of Greenwinch */
  15.     int tz_dsttime;        /* type of dst correction to apply */
  16. };
  17.