]> code.delx.au - gnu-emacs/blob - nt/inc/sys/time.h
Trailing whitespace deleted.
[gnu-emacs] / nt / inc / sys / time.h
1 #ifndef SYS_TIME_H_INCLUDED
2 #define SYS_TIME_H_INCLUDED
3
4 /*
5 * sys/time.h doesn't exist on NT
6 */
7
8 struct timeval
9 {
10 long tv_sec; /* seconds */
11 long tv_usec; /* microseconds */
12 };
13 struct timezone
14 {
15 int tz_minuteswest; /* minutes west of Greenwich */
16 int tz_dsttime; /* type of dst correction */
17 };
18
19 void gettimeofday (struct timeval *, struct timezone *);
20
21 #endif /* SYS_TIME_H_INCLUDED */
22
23 /* end of sys/time.h */