From: Jim Meyering Date: Sun, 14 Dec 1997 12:40:33 +0000 (+0000) Subject: s/HAVE_DECLARATION/HAVE_DECL_/g X-Git-Tag: FILEUTILS-3_16g~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f684c873f7eeb49e884126118816fc02d8b0b022;p=thirdparty%2Fcoreutils.git s/HAVE_DECLARATION/HAVE_DECL_/g --- diff --git a/src/sys2.h b/src/sys2.h index 9d9082b1a1..d77d7e831d 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -116,30 +116,34 @@ char *alloca (); #define STREQ(a,b) (strcmp((a), (b)) == 0) -#ifndef HAVE_DECLARATION_FREE +#ifndef HAVE_DECL_FREE void free (); #endif -#ifndef HAVE_DECLARATION_MALLOC +#ifndef HAVE_DECL_MALLOC char *malloc (); #endif -#ifndef HAVE_DECLARATION_REALLOC +#ifndef HAVE_DECL_REALLOC char *realloc (); #endif -#ifndef HAVE_DECLARATION_STPCPY +#ifndef HAVE_DECL_STPCPY char *stpcpy (); #endif -#ifndef HAVE_DECLARATION_STRSTR +#ifndef HAVE_DECL_STRSTR char *strstr (); #endif -#ifndef HAVE_DECLARATION_GETENV +#ifndef HAVE_DECL_GETENV char *getenv (); #endif +#ifndef HAVE_DECL_LSEEK +off_t lseek (); +#endif + #include "xalloc.h" #ifndef HAVE_MEMPCPY