00001 #ifndef _SYS_TIME_H 00002 #define _SYS_TIME_H 00003 00004 #include <time.h> 00005 00006 typedef unsigned long suseconds_t; 00007 00008 struct timeval { 00009 time_t tv_sec; /* seconds */ 00010 suseconds_t tv_usec; /* microseconds */ 00011 }; 00012 00013 struct timezone { 00014 int tz_minuteswest; /* minutes W of Greenwich */ 00015 int tz_dsttime; /* type of dst correction */ 00016 }; 00017 00018 extern int gettimeofday ( struct timeval *tv, struct timezone *tz ); 00019 00020 #endif /* _SYS_TIME_H */
1.5.7.1