From bb38b0c253bc201557de651f4145018006bf6890 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 23 May 1994 22:25:30 +0000 Subject: [!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef _POSIX_VERSION for these declarations. --- make.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/make.h b/make.h index 0405087..e5fbc48 100644 --- a/make.h +++ b/make.h @@ -299,7 +299,10 @@ extern void user_access (), make_access (), child_access (); #include #endif -#if !defined (__GNU_LIBRARY__) && !defined (POSIX) +/* We omit these declarations on non-POSIX systems which define _POSIX_VERSION, + because such systems often declare the in header files anyway. */ + +#if !defined (__GNU_LIBRARY__) && !defined (POSIX) && !defined (_POSIX_VERSION) #ifdef HAVE_SIGSETMASK extern int sigsetmask (); -- cgit v1.2.3