diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-09-18 21:46:44 +0200 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-10-01 10:02:09 -0700 |
commit | 7142fcfeed453401ee47b0e36b5018a58575c065 (patch) | |
tree | b310ac82219eedd8fdb2f8de20123d7bd39cd6df /zutil.h | |
parent | a4f7c653748f5b5116e841c11af7adae7a140b88 (diff) | |
download | zlib-7142fcfeed453401ee47b0e36b5018a58575c065.tar.gz zlib-7142fcfeed453401ee47b0e36b5018a58575c065.tar.bz2 zlib-7142fcfeed453401ee47b0e36b5018a58575c065.zip |
Always add large file support for windows
Diffstat (limited to 'zutil.h')
-rw-r--r-- | zutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -160,7 +160,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ | |||
160 | #endif | 160 | #endif |
161 | 161 | ||
162 | /* provide prototypes for these when building zlib without LFS */ | 162 | /* provide prototypes for these when building zlib without LFS */ |
163 | #if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0 | 163 | #if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0) |
164 | ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); | 164 | ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); |
165 | ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); | 165 | ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); |
166 | #endif | 166 | #endif |