time.h 439 B

12345678910111213141516171819202122232425
  1. #ifndef SYS_TIME_H_INCLUDED
  2. #define SYS_TIME_H_INCLUDED
  3. /*
  4. * sys/time.h doesn't exist on NT
  5. */
  6. struct timeval
  7. {
  8. long tv_sec; /* seconds */
  9. long tv_usec; /* microseconds */
  10. };
  11. struct timezone
  12. {
  13. int tz_minuteswest; /* minutes west of Greenwich */
  14. int tz_dsttime; /* type of dst correction */
  15. };
  16. void gettimeofday (struct timeval *, struct timezone *);
  17. #endif /* SYS_TIME_H_INCLUDED */
  18. /* end of sys/time.h */