diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2013-02-24 00:16:24 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2013-02-24 00:16:24 -0800 |
commit | a2d71e8e66530c325bfce936f3805ccff5831b62 (patch) | |
tree | 554d836f65cb7eb50c7ec48fe98ae5cdfbd53112 /zconf.h | |
parent | bc7e017112bb8e37a3103879148be718a48f5023 (diff) | |
download | zlib-a2d71e8e66530c325bfce936f3805ccff5831b62.tar.gz zlib-a2d71e8e66530c325bfce936f3805ccff5831b62.tar.bz2 zlib-a2d71e8e66530c325bfce936f3805ccff5831b62.zip |
Fix typos in the use of _LARGEFILE64_SOURCE in zconf.h.
Diffstat (limited to 'zconf.h')
-rw-r--r-- | zconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -439,7 +439,7 @@ typedef uLong FAR uLongf; | |||
439 | * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as | 439 | * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as |
440 | * equivalently requesting no 64-bit operations | 440 | * equivalently requesting no 64-bit operations |
441 | */ | 441 | */ |
442 | #if defined(LARGEFILE64_SOURCE) && -_LARGEFILE64_SOURCE - -1 == 1 | 442 | #if defined(_LARGEFILE64_SOURCE) && -_LARGEFILE64_SOURCE - -1 == 1 |
443 | # undef _LARGEFILE64_SOURCE | 443 | # undef _LARGEFILE64_SOURCE |
444 | #endif | 444 | #endif |
445 | 445 | ||
@@ -447,7 +447,7 @@ typedef uLong FAR uLongf; | |||
447 | # define Z_HAVE_UNISTD_H | 447 | # define Z_HAVE_UNISTD_H |
448 | #endif | 448 | #endif |
449 | #ifndef Z_SOLO | 449 | #ifndef Z_SOLO |
450 | # if defined(Z_HAVE_UNISTD_H) || defined(LARGEFILE64_SOURCE) | 450 | # if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) |
451 | # include <unistd.h> /* for SEEK_*, off_t, and _LFS64_LARGEFILE */ | 451 | # include <unistd.h> /* for SEEK_*, off_t, and _LFS64_LARGEFILE */ |
452 | # ifdef VMS | 452 | # ifdef VMS |
453 | # include <unixio.h> /* for off_t */ | 453 | # include <unixio.h> /* for off_t */ |