mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-31 03:25:08 +00:00
[!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef _POSIX_VERSION for these
declarations.
This commit is contained in:
parent
d2ed03e72a
commit
bb38b0c253
1 changed files with 4 additions and 1 deletions
5
make.h
5
make.h
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue