Merge pull request #114 from darealshinji/patch-1

Fix windows.h include when cross-building on Linux
This commit is contained in:
Arttu Ylä-Outinen 2015-11-09 12:18:11 +02:00
commit cbc44734ec

View file

@ -56,7 +56,7 @@
#else //__GNUC__
//TODO: we assume !GCC => Windows... this may be bad
#include <Windows.h>
#include <windows.h>
#define CLOCK_T struct _FILETIME
#define GET_TIME(clock_t) GetSystemTimeAsFileTime(clock_t)