This commit is contained in:
Blaise Tine
2019-11-25 04:54:41 -05:00
parent d953d6ab5b
commit 6ecb4e5d28
19 changed files with 45390 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#ifdef _WIN32
#include <WinSock.h>
/**
Based on code seen at.
http://www.winehq.org/pipermail/wine-devel/2003-June/018082.html
http://msdn.microsoft.com/en-us/library/ms740560
*/
int gettimeofday(struct timeval *tv, struct timezone *tz);
#else
#include <sys/time.h>
#endif