From: Jim Meyering Date: Sun, 27 Feb 2000 17:26:39 +0000 (+0000) Subject: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL...' X-Git-Tag: FILEUTILS-4_0q~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c2f3af37bb0cf1a0c31307540b067b2ba3e930b6;p=thirdparty%2Fcoreutils.git Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL...' now that autoconf always defines the HAVE_DECL_ symbols. --- diff --git a/src/sys2.h b/src/sys2.h index a0096d5204..211e83fc64 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