summaryrefslogtreecommitdiff
path: root/make.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-06-24 09:45:35 +0000
committerRoland McGrath <roland@redhat.com>1994-06-24 09:45:35 +0000
commit660a23d6493910c3cf5fa0699811d1c1c3f3e655 (patch)
treefe7ef0d87ff7af086be9b0c20cf97f8ae3ac8439 /make.h
parent5bd9836fba1c0a2fb43f546b19fcd330d56ffeb3 (diff)
downloadgunmake-660a23d6493910c3cf5fa0699811d1c1c3f3e655.tar.gz
[__arm]: Undefine POSIX.
[!__GNU_LIBRARY__ && !POSIX && !_POSIX_VERSION]: Don't declare system functions that return int.
Diffstat (limited to 'make.h')
-rw-r--r--make.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/make.h b/make.h
index e5fbc48..2074fe9 100644
--- a/make.h
+++ b/make.h
@@ -67,7 +67,7 @@ extern int errno;
#endif
/* Some systems define _POSIX_VERSION but are not really POSIX.1. */
-#if (defined (butterfly) || \
+#if (defined (butterfly) || defined (__arm) \
(defined (__mips) && defined (_SYSTYPE_SVR3)) || \
(defined (sequent) && defined (i386)))
#undef POSIX
@@ -304,15 +304,7 @@ extern void user_access (), make_access (), child_access ();
#if !defined (__GNU_LIBRARY__) && !defined (POSIX) && !defined (_POSIX_VERSION)
-#ifdef HAVE_SIGSETMASK
-extern int sigsetmask ();
-extern int sigblock ();
-#endif
-extern int kill ();
-extern int atoi ();
extern long int atol ();
-extern int unlink (), stat (), fstat ();
-extern int pipe (), close (), read (), write (), open ();
extern long int lseek ();
#endif /* Not GNU C library or POSIX. */