diff options
author | Roland McGrath <roland@redhat.com> | 1994-05-23 22:25:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-05-23 22:25:30 +0000 |
commit | bb38b0c253bc201557de651f4145018006bf6890 (patch) | |
tree | b487e386a63cfa1186c950b2f5633ed1317b1fb4 | |
parent | d2ed03e72a2b302a84a6e2175632e02340a177ac (diff) | |
download | gunmake-bb38b0c253bc201557de651f4145018006bf6890.tar.gz |
[!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef _POSIX_VERSION for these
declarations.
-rw-r--r-- | make.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 (); |