Bump version to 23.0.92.
[emacs.git] / nt / inc / sys / time.h
bloba3808f4c5c57bc8e9399dd6463d6beb17b99e844
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 */
13 struct timezone
15 int tz_minuteswest; /* minutes west of Greenwich */
16 int tz_dsttime; /* type of dst correction */
19 void gettimeofday (struct timeval *, struct timezone *);
21 #endif /* SYS_TIME_H_INCLUDED */
23 /* end of sys/time.h */
25 /* arch-tag: bc525883-0c81-4bea-b83d-3325461f38b5
26 (do not change this comment) */