aboutsummaryrefslogtreecommitdiff
path: root/zutil.h
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-09-18 21:46:44 +0200
committerMark Adler <madler@alumni.caltech.edu>2011-10-01 10:02:09 -0700
commit7142fcfeed453401ee47b0e36b5018a58575c065 (patch)
treeb310ac82219eedd8fdb2f8de20123d7bd39cd6df /zutil.h
parenta4f7c653748f5b5116e841c11af7adae7a140b88 (diff)
downloadzlib-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zutil.h b/zutil.h
index 258fa88..c199b20 100644
--- a/zutil.h
+++ b/zutil.h
@@ -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