diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1996-05-03 18:29:10 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1996-05-03 18:29:10 +0000 |
commit | c911543b1c6cb0c2e40b8e2d0df98a8c7a4b0fb0 (patch) | |
tree | 3460ffdec7cf4997e0f212afb0e1ea020f7b0e99 /nt/inc/sys/time.h | |
parent | 14f29224a0377ecf267326c3d64bf67c6795b378 (diff) | |
download | emacs-c911543b1c6cb0c2e40b8e2d0df98a8c7a4b0fb0.tar.gz emacs-c911543b1c6cb0c2e40b8e2d0df98a8c7a4b0fb0.tar.bz2 emacs-c911543b1c6cb0c2e40b8e2d0df98a8c7a4b0fb0.zip |
Initial revision
Diffstat (limited to 'nt/inc/sys/time.h')
-rw-r--r-- | nt/inc/sys/time.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nt/inc/sys/time.h b/nt/inc/sys/time.h new file mode 100644 index 00000000000..dc270998609 --- /dev/null +++ b/nt/inc/sys/time.h @@ -0,0 +1,18 @@ +/* + * sys/time.h doesn't exist on NT + */ + +struct timeval + { + long tv_sec; /* seconds */ + long tv_usec; /* microseconds */ + }; +struct timezone + { + int tz_minuteswest; /* minutes west of Greenwich */ + int tz_dsttime; /* type of dst correction */ + }; + +void gettimeofday (struct timeval *, struct timezone *); + +/* end of sys/time.h */ |