diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2012-03-18 09:29:44 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2012-03-18 09:29:44 -0700 |
commit | 8e16df2c3f0dbe0f8a819e1913562073cf721636 (patch) | |
tree | 1c91e0b2ccc16ad31c941f5ecfd063776a1bf30d /zconf.h | |
parent | a1af6e96e35dfc3adfa2acba01883c14115f1090 (diff) | |
download | zlib-8e16df2c3f0dbe0f8a819e1913562073cf721636.tar.gz zlib-8e16df2c3f0dbe0f8a819e1913562073cf721636.tar.bz2 zlib-8e16df2c3f0dbe0f8a819e1913562073cf721636.zip |
More fixes for gzopen_w().
Also need to #include <stddef.h> for zlib.h, and need to workaround
the inability to use wide characters in constructed error messages
with zlib's interface.
Diffstat (limited to 'zconf.h')
-rw-r--r-- | zconf.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -402,6 +402,10 @@ typedef uLong FAR uLongf; | |||
402 | # endif | 402 | # endif |
403 | #endif | 403 | #endif |
404 | 404 | ||
405 | #ifdef _WIN32 | ||
406 | # include <stddef.h> /* for wchar_t */ | ||
407 | #endif | ||
408 | |||
405 | /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and | 409 | /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and |
406 | * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even | 410 | * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even |
407 | * though the former does not conform to the LFS document), but considering | 411 | * though the former does not conform to the LFS document), but considering |