home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / source / sh / std / posix / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  274 b   |  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.