summaryrefslogtreecommitdiff
path: root/src/sys2.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-12-14 12:40:33 +0000
committerJim Meyering <jim@meyering.net>1997-12-14 12:40:33 +0000
commitf684c873f7eeb49e884126118816fc02d8b0b022 (patch)
treebcce0e1d8ffb515d723716e056ae94b6ac1e7f5c /src/sys2.h
parent7c474bb76f19576746f782751572618cb012691a (diff)
downloadcoreutils-f684c873f7eeb49e884126118816fc02d8b0b022.tar.xz
s/HAVE_DECLARATION/HAVE_DECL_/g
Diffstat (limited to 'src/sys2.h')
-rw-r--r--src/sys2.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/sys2.h b/src/sys2.h
index 9d9082b1a..d77d7e831 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