home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / apps / posix / source / SH / STD / H / SYS / TIME.H next >
C/C++ Source or Header  |  1999-11-17  |  274b  |  15 lines

  1. /*
  2.  * Replacement for BSD <sys/time.h>
  3.  * because Ultrix screws it up.
  4.  */
  5.  
  6. struct timeval {
  7.     long tv_sec;        /* time_t */
  8.     long tv_usec;        /* microsex */
  9. };
  10.  
  11. struct timezone {
  12.     int tz_minuteswest;    /* of Greenwinch */
  13.     int tz_dsttime;        /* type of dst correction to apply */
  14. };
  15.