diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2021-03-31 09:35:14 +0300 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2021-04-08 19:41:25 +0200 |
commit | b2085a875b9f9a84a3d2f710fc0279b3222ce1c7 (patch) | |
tree | 71eb5ba5096b8ee24e00af6d27b114ad6da08fe2 | |
parent | 9f784908599006e9f09599b85b495bdcda1f25c4 (diff) |
Fix build if -D_FILE_OFFSET_BITS=64 is set manually.
-rw-r--r-- | zlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1794,7 +1794,7 @@ Z_EXTERN int Z_EXPORT gzgetc_(gzFile file); /* backward compatibility */ Z_EXTERN void Z_EXPORT crc32_combine_gen64(uint32_t *op, z_off64_t); #endif -#if !defined(ZLIB_INTERNAL) && defined(Z_WANT64) +#if !defined(Z_INTERNAL) && defined(Z_WANT64) # define gzopen gzopen64 # define gzseek gzseek64 # define gztell gztell64 |