From c2f3af37bb0cf1a0c31307540b067b2ba3e930b6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 27 Feb 2000 17:26:39 +0000 Subject: [PATCH] Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL...' now that autoconf always defines the HAVE_DECL_ symbols. --- src/sys2.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/sys2.h b/src/sys2.h index a0096d5..211e83f 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -261,47 +261,47 @@ char *alloca (); #define STREQ(a, b) (strcmp ((a), (b)) == 0) -#ifndef HAVE_DECL_FREE +#if !HAVE_DECL_FREE void free (); #endif -#ifndef HAVE_DECL_MALLOC +#if !HAVE_DECL_MALLOC char *malloc (); #endif -#ifndef HAVE_DECL_MEMCHR +#if !HAVE_DECL_MEMCHR char *memchr (); #endif -#ifndef HAVE_DECL_REALLOC +#if !HAVE_DECL_REALLOC char *realloc (); #endif -#ifndef HAVE_DECL_STPCPY +#if !HAVE_DECL_STPCPY # ifndef stpcpy char *stpcpy (); # endif #endif -#ifndef HAVE_DECL_STRSTR +#if !HAVE_DECL_STRSTR char *strstr (); #endif -#ifndef HAVE_DECL_GETENV +#if !HAVE_DECL_GETENV char *getenv (); #endif -#ifndef HAVE_DECL_LSEEK +#if !HAVE_DECL_LSEEK off_t lseek (); #endif /* This is needed on some AIX systems. */ -#ifndef HAVE_DECL_STRTOUL +#if !HAVE_DECL_STRTOUL unsigned long strtoul (); #endif /* This is needed on some AIX systems. */ -#ifndef HAVE_DECL_STRTOULL +#if !HAVE_DECL_STRTOULL unsigned long long strtoull (); #endif -- 2.7.4