diff options
author | Jim Meyering <jim@meyering.net> | 2000-02-27 17:26:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-02-27 17:26:39 +0000 |
commit | c2f3af37bb0cf1a0c31307540b067b2ba3e930b6 (patch) | |
tree | f36e59d49e901e8d3aab8a5e38bd3bc5b6293e96 /src | |
parent | fe56d629d1aeef86b1c22b247a49e477cb0b3cf2 (diff) | |
download | coreutils-c2f3af37bb0cf1a0c31307540b067b2ba3e930b6.tar.xz |
Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL...'
now that autoconf always defines the HAVE_DECL_ symbols.
Diffstat (limited to 'src')
-rw-r--r-- | src/sys2.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/sys2.h b/src/sys2.h index a0096d520..211e83fc6 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 |