mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
e5c0c7185e
svn path=/trunk/; revision=2456
16 lines
217 B
Text
16 lines
217 B
Text
|
|
#ifndef _SYS_TIME_H
|
|
#define _SYS_TIME_H
|
|
|
|
#ifndef _WINSOCKAPI_ /* winsock.h defines struct timeval */
|
|
|
|
struct timeval {
|
|
long tv_sec;
|
|
long tv_usec;
|
|
};
|
|
|
|
#endif
|
|
|
|
int gettimeofday (struct timeval*, void *);
|
|
|
|
#endif
|