Make cpuinfo.c compile under MinGW64

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27808 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-10-20 18:08:10 +00:00
parent 6f6bf7f765
commit 92f9a746ae
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#include <string.h>
#include <unistd.h>
#if defined(__MINGW32__) && (__MINGW32_MAJOR_VERSION <= 3) && (__MINGW32_MINOR_VERSION < 10)
#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;