diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index ed6de1b86c276a9d1e7fc3cf35814f15d6ecf0a0..0db5ca21384c5eb3f8fc3117b9c7dd7016b79853 100644 --- a/tools/qt-faststart.c +++ b/tools/qt-faststart.c @@ -30,10 +30,14 @@ #include <string.h> #ifdef __MINGW32__ +#undef fseeko #define fseeko(x, y, z) fseeko64(x, y, z) +#undef ftello #define ftello(x) ftello64(x) #elif defined(_WIN32) +#undef fseeko #define fseeko(x, y, z) _fseeki64(x, y, z) +#undef ftello #define ftello(x) _ftelli64(x) #endif