emacs/nt/inc/sys/time.h

27 lines
524 B
C
Raw Normal View History

2000-02-06 23:37:34 +00:00
#ifndef SYS_TIME_H_INCLUDED
#define SYS_TIME_H_INCLUDED
1996-05-03 18:29:10 +00:00
/*
* sys/time.h doesn't exist on NT
*/
2003-02-04 14:56:31 +00:00
struct timeval
1996-05-03 18:29:10 +00:00
{
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
};
2003-02-04 14:56:31 +00:00
struct timezone
1996-05-03 18:29:10 +00:00
{
int tz_minuteswest; /* minutes west of Greenwich */
int tz_dsttime; /* type of dst correction */
};
void gettimeofday (struct timeval *, struct timezone *);
2000-02-06 23:37:34 +00:00
#endif /* SYS_TIME_H_INCLUDED */
1996-05-03 18:29:10 +00:00
/* end of sys/time.h */
2003-09-01 15:45:59 +00:00
/* arch-tag: bc525883-0c81-4bea-b83d-3325461f38b5
(do not change this comment) */