This commit was generated by cvs2svn to compensate for changes in r6453,
[chise/xemacs-chise.git.1] / nt / inc / sys / time.h
1 /*
2  * sys/time.h doesn't exist on NT
3  */
4
5 #include <time.h>
6
7 struct timeval 
8   {
9     long tv_sec;        /* seconds */
10     long tv_usec;       /* microseconds */
11   };
12
13 struct timezone 
14   {
15     int tz_minuteswest; /* minutes west of Greenwich */
16     int tz_dsttime;     /* type of dst correction */
17   };
18
19 #ifndef HAVE_X_WINDOWS
20 /* X11R6 on NT provides the single parameter version of this command */
21 void gettimeofday (struct timeval *, struct timezone *);
22 #endif
23
24 /* end of sys/time.h */