[oops] fix MinGW compilation broken with previous commit

This commit is contained in:
Pete Batard 2013-07-21 21:13:28 +01:00
parent 0defc28b09
commit b5143b0d84
2 changed files with 7 additions and 5 deletions

View file

@ -39,6 +39,7 @@
/* Define to 1 if you have the `fseeko64' function. */
#define HAVE_FSEEKO64 1
#if defined(_MSC_VER)
/* The equivalent of fseeko64 for MSVC is _fseeki64, however this */
/* is not available on XP when build with WDK (but _lseeki64 is) */
#if defined(DDKBUILD)
@ -51,6 +52,7 @@ static __inline int fseeko64(FILE *stream, __int64 offset, int origin) {
#else
#define fseeko64 _fseeki64
#endif
#endif
/* Define to 1 if you have the `ftruncate' function. */
/* #undef HAVE_FTRUNCATE */