Remove _LARGEFILE64_SOURCE requirement from apple defines for large files

This commit is contained in:
Martin
2018-02-20 18:58:32 +01:00
parent b01930542e
commit fef12d34f1

View File

@@ -112,7 +112,7 @@ static FILE *mz_freopen(const char *pPath, const char *pMode, FILE *pStream)
#define MZ_FFLUSH fflush
#define MZ_FREOPEN(p, m, s) freopen64(p, m, s)
#define MZ_DELETE_FILE remove
#elif defined(__APPLE__) && _LARGEFILE64_SOURCE
#elif defined(__APPLE__)
#ifndef MINIZ_NO_TIME
#include <utime.h>
#endif