home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / pdksh-4.9-src.tgz / tar.out / contrib / pdksh / std / h / sys / time.h next >
C/C++ Source or Header  |  1996-09-28  |  326b  |  16 lines

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