From d0d62c059867a54ba6c6631b269b1474d82e7018 Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Sun, 22 Jun 2014 10:22:39 +0000 Subject: No fopen64() on Android. --- src/minizip/ioapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/minizip/ioapi.c') diff --git a/src/minizip/ioapi.c b/src/minizip/ioapi.c index 9e526ee..900846d 100644 --- a/src/minizip/ioapi.c +++ b/src/minizip/ioapi.c @@ -14,7 +14,7 @@ #define _CRT_SECURE_NO_WARNINGS #endif -#if defined(__APPLE__) || defined(IOAPI_NO_64) +#if defined(__APPLE__) || defined(__ANDROID__) || defined(IOAPI_NO_64) // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions #define FOPEN_FUNC(filename, mode) fopen(filename, mode) #define FTELLO_FUNC(stream) ftello(stream) -- cgit v1.2.3