src/xdisp.c (single_display_spec_string): Correct a FIXME comment.
[emacs.git] / nt / inc / sys / time.h
blobc90d1fd62f542fe98e26b8a93f25f3ef93936a07
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 */