home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / DiceC / include / sys / time.h < prev    next >
C/C++ Source or Header  |  1994-02-01  |  145b  |  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.