[!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef _POSIX_VERSION for these

declarations.
This commit is contained in:
Roland McGrath 1994-05-23 22:25:30 +00:00
parent d2ed03e72a
commit bb38b0c253

5
make.h
View file

@ -299,7 +299,10 @@ extern void user_access (), make_access (), child_access ();
#include <vfork.h>
#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 ();