aboutsummaryrefslogtreecommitdiff
path: root/zconf.h.in
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2025-02-13 22:44:48 -0800
committerMark Adler <madler@alumni.caltech.edu>2025-02-13 22:44:48 -0800
commit7108497fda9d4536a1afade7f42266e06dca4488 (patch)
treeaa923ec19810dec769ebcbe4218038e529840a75 /zconf.h.in
parent00161eff1de25e9eed56bffdbe58f2c07ca16e51 (diff)
downloadzlib-7108497fda9d4536a1afade7f42266e06dca4488.tar.gz
zlib-7108497fda9d4536a1afade7f42266e06dca4488.tar.bz2
zlib-7108497fda9d4536a1afade7f42266e06dca4488.zip
Check that HAVE_UNISTD_H and HAVE_STDARG_H are not defined as 0.
Diffstat (limited to 'zconf.h.in')
-rw-r--r--zconf.h.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/zconf.h.in b/zconf.h.in
index d6c159a..bc3ef07 100644
--- a/zconf.h.in
+++ b/zconf.h.in
@@ -436,11 +436,11 @@ typedef uLong FAR uLongf;
436 typedef unsigned long z_crc_t; 436 typedef unsigned long z_crc_t;
437#endif 437#endif
438 438
439#ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ 439#if HAVE_UNISTD_H-0 /* may be set to #if 1 by ./configure */
440# define Z_HAVE_UNISTD_H 440# define Z_HAVE_UNISTD_H
441#endif 441#endif
442 442
443#ifdef HAVE_STDARG_H /* may be set to #if 1 by ./configure */ 443#if HAVE_STDARG_H-0 /* may be set to #if 1 by ./configure */
444# define Z_HAVE_STDARG_H 444# define Z_HAVE_STDARG_H
445#endif 445#endif
446 446