summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpuinfo.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/cpuinfo.c b/cpuinfo.c
index 78f5d5b7d2..3c58009906 100644
--- a/cpuinfo.c
+++ b/cpuinfo.c
@@ -8,15 +8,6 @@
#include <string.h>
#include <unistd.h>
-#if defined(__MINGW32__) && (__MINGW32_MAJOR_VERSION <= 3) && (__MINGW32_MINOR_VERSION < 10) && !defined(MINGW64)
-#include <sys/timeb.h>
-void gettimeofday(struct timeval* t,void* timezone) {
- struct timeb timebuffer;
- ftime( &timebuffer );
- t->tv_sec=timebuffer.time;
- t->tv_usec=1000*timebuffer.millitm;
-}
-#endif
#ifdef __MINGW32__
#define MISSING_USLEEP
#include <windows.h>