mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 07:38:59 +08:00
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_ */
|