Fixes for Info link-following mouse commands.
[emacs.git] / nt / inc / sys / time.h
blob583b966b760a2bfe6f73e4d09fc2332746740115
1 #ifndef SYS_TIME_H_INCLUDED
2 #define SYS_TIME_H_INCLUDED
4 /*
5 * sys/time.h doesn't exist on NT
6 */
8 struct timeval
10 long tv_sec; /* seconds */
11 long tv_usec; /* microseconds */
14 struct timezone
16 int tz_minuteswest; /* minutes west of Greenwich */
17 int tz_dsttime; /* type of dst correction */
20 struct timespec
22 time_t tv_sec; /* seconds */
23 long int tv_nsec; /* nanoseconds */
26 void gettimeofday (struct timeval *, struct timezone *);
28 #endif /* SYS_TIME_H_INCLUDED */
30 /* end of sys/time.h */