From: Roland McGrath Date: Mon, 23 May 1994 22:25:30 +0000 (+0000) Subject: [!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef _POSIX_VERSION for these X-Git-Tag: 3.71.2~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb38b0c253bc201557de651f4145018006bf6890;p=thirdparty%2Fmake.git [!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef _POSIX_VERSION for these declarations. --- diff --git a/make.h b/make.h index 04050871..e5fbc482 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 ();