14 lines
234 B
C
14 lines
234 B
C
|
#ifndef _MY_GETTIMEOFDAY_H_
|
||
|
#define _MY_GETTIMEOFDAY_H_
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
|
||
|
#include <winsock2.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
int gettimeofday(struct timeval * tp, struct timezone * tzp);
|
||
|
|
||
|
#endif /* _MSC_VER */
|
||
|
|
||
|
#endif /* _MY_GETTIMEOFDAY_H_ */
|