home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / c / dice / include / sys / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-01  |  145 b   |  14 lines

  1.  
  2. #ifndef SYS_TIME_H
  3. #define SYS_TIME_H
  4.  
  5. #include <time.h>
  6.  
  7. struct timeval {
  8.     unsigned long   tv_sec;
  9.     unsigned long   tv_usec;
  10. };
  11.  
  12. #endif
  13.  
  14.