vcpkg/ports/gettimeofday/gettimeofday.h

14 lines
234 B
C
Raw Normal View History

#ifndef _MY_GETTIMEOFDAY_H_
#define _MY_GETTIMEOFDAY_H_
#ifdef _MSC_VER
#include <winsock2.h>
2017-10-28 04:22:44 +08:00
#include <time.h>
2017-10-28 04:22:44 +08:00
int gettimeofday(struct timeval * tp, struct timezone * tzp);
#endif /* _MSC_VER */
#endif /* _MY_GETTIMEOFDAY_H_ */