home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / time14.zip / time-1.4 / timeval.h < prev    next >
C/C++ Source or Header  |  1992-05-07  |  282b  |  14 lines

  1. /* High resolution clock structure for non-BSD systems.  */
  2.  
  3. struct timeval
  4. {
  5.   long tv_sec;            /* Seconds.  */
  6.   long tv_usec;            /* Microseconds.  */
  7. };
  8.  
  9. struct timezone
  10. {
  11.   int tz_minuteswest;        /* Minutes west of Greenwich.  */
  12.   int tz_dsttime;        /* Type of DST correction.  */
  13. };
  14.