home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / gnu / pdksh-4.9-src.lha / GNU / src / amiga / pdksh-4.9 / std / posix / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-04  |  326 b   |  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.