diff options
Diffstat (limited to 'contrib/minizip/miniunz.c')
-rw-r--r-- | contrib/minizip/miniunz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/miniunz.c b/contrib/minizip/miniunz.c index 4bb080b..4f18b30 100644 --- a/contrib/minizip/miniunz.c +++ b/contrib/minizip/miniunz.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #endif | 27 | #endif |
28 | #endif | 28 | #endif |
29 | 29 | ||
30 | #ifdef __APPLE__ | 30 | #if defined(__APPLE__) || defined(__HAIKU__) || defined(MINIZIP_FOPEN_NO_64) |
31 | // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions | 31 | // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions |
32 | #define FOPEN_FUNC(filename, mode) fopen(filename, mode) | 32 | #define FOPEN_FUNC(filename, mode) fopen(filename, mode) |
33 | #define FTELLO_FUNC(stream) ftello(stream) | 33 | #define FTELLO_FUNC(stream) ftello(stream) |