From 7108497fda9d4536a1afade7f42266e06dca4488 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Thu, 13 Feb 2025 22:44:48 -0800 Subject: Check that HAVE_UNISTD_H and HAVE_STDARG_H are not defined as 0. --- zconf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zconf.h') diff --git a/zconf.h b/zconf.h index d6c159a..bc3ef07 100644 --- a/zconf.h +++ b/zconf.h @@ -436,11 +436,11 @@ typedef uLong FAR uLongf; typedef unsigned long z_crc_t; #endif -#ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ +#if HAVE_UNISTD_H-0 /* may be set to #if 1 by ./configure */ # define Z_HAVE_UNISTD_H #endif -#ifdef HAVE_STDARG_H /* may be set to #if 1 by ./configure */ +#if HAVE_STDARG_H-0 /* may be set to #if 1 by ./configure */ # define Z_HAVE_STDARG_H #endif -- cgit v1.2.3-55-g6feb