aboutsummaryrefslogtreecommitdiff
path: root/zconf.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2024-02-11 15:37:46 -0800
committerMark Adler <madler@alumni.caltech.edu>2024-02-11 15:37:46 -0800
commit04134633fa6f8a9ac87ffd4b2683ca61bd41acd6 (patch)
treedfc9bba22470a0431c84d091a44962a3acc7c1dc /zconf.h
parentc983609168d899e7ad29cd1878abac8c9282c6ac (diff)
downloadzlib-04134633fa6f8a9ac87ffd4b2683ca61bd41acd6.tar.gz
zlib-04134633fa6f8a9ac87ffd4b2683ca61bd41acd6.tar.bz2
zlib-04134633fa6f8a9ac87ffd4b2683ca61bd41acd6.zip
Use 64-bit offsets in DJGPP.
Diffstat (limited to 'zconf.h')
-rw-r--r--zconf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zconf.h b/zconf.h
index 0a9f22c..fbe7a79 100644
--- a/zconf.h
+++ b/zconf.h
@@ -511,12 +511,12 @@ typedef uLong FAR uLongf;
511 511
512#if !defined(_WIN32) && defined(Z_LARGE64) 512#if !defined(_WIN32) && defined(Z_LARGE64)
513# define z_off64_t off64_t 513# define z_off64_t off64_t
514#elif defined(_WIN32) && !defined(__GNUC__)
515# define z_off64_t __int64
516#elif defined(__GO32__)
517# define z_off64_t offset_t
514#else 518#else
515# if defined(_WIN32) && !defined(__GNUC__) 519# define z_off64_t z_off_t
516# define z_off64_t __int64
517# else
518# define z_off64_t z_off_t
519# endif
520#endif 520#endif
521 521
522/* MVS linker does not support external names larger than 8 bytes */ 522/* MVS linker does not support external names larger than 8 bytes */