mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
17 lines
217 B
Text
17 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
|