]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
s/HAVE_DECLARATION/HAVE_DECL_/g
authorJim Meyering <jim@meyering.net>
Sun, 14 Dec 1997 12:40:33 +0000 (12:40 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 14 Dec 1997 12:40:33 +0000 (12:40 +0000)
src/sys2.h

index 9d9082b1a152bf8a6bea056efd96838600ee4b4b..d77d7e831d843008b7acd868bdd12363e16b2fe6 100644 (file)
@@ -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