您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. #ifndef _SYS_TIME_H
  2. #define _SYS_TIME_H
  3. #include <time.h>
  4. typedef unsigned long suseconds_t;
  5. struct timeval {
  6. time_t tv_sec; /* seconds */
  7. suseconds_t tv_usec; /* microseconds */
  8. };
  9. struct timezone {
  10. int tz_minuteswest; /* minutes W of Greenwich */
  11. int tz_dsttime; /* type of dst correction */
  12. };
  13. extern int gettimeofday ( struct timeval *tv, struct timezone *tz );
  14. #endif /* _SYS_TIME_H */