comparison nt/inc/sys/time.h @ 15139:4d638e5a9e7d

Initial revision
author Geoff Voelker <voelker@cs.washington.edu>
date Fri, 03 May 1996 18:29:10 +0000
parents
children fa66d09c3310
comparison
equal deleted inserted replaced
15138:92326afec2a6 15139:4d638e5a9e7d
1 /*
2 * sys/time.h doesn't exist on NT
3 */
4
5 struct timeval
6 {
7 long tv_sec; /* seconds */
8 long tv_usec; /* microseconds */
9 };
10 struct timezone
11 {
12 int tz_minuteswest; /* minutes west of Greenwich */
13 int tz_dsttime; /* type of dst correction */
14 };
15
16 void gettimeofday (struct timeval *, struct timezone *);
17
18 /* end of sys/time.h */