home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / dev / modula-v1.0d.lha / Modula / dice / dice.LHA / include / sys / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-24  |  148 b   |  15 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.  
  15.