diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-22 10:22:39 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-22 10:22:39 +0000 |
commit | d0d62c059867a54ba6c6631b269b1474d82e7018 (patch) | |
tree | dd40daf3cbd988de6aa7ae96b7e44e89be234c64 /src/minizip/ioapi.c | |
parent | 027fe3a5ee5d4e34912752c2410f6a6debe7e6b4 (diff) |
No fopen64() on Android.
Diffstat (limited to 'src/minizip/ioapi.c')
-rw-r--r-- | src/minizip/ioapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |