diff options
author | Roland McGrath <roland@redhat.com> | 1995-04-26 21:19:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1995-04-26 21:19:26 +0000 |
commit | cbdb3653da95b07fe269ef8cc166f4d7882717b8 (patch) | |
tree | f5d6481a49731a30c33b6b6c2c559506b31e6759 | |
parent | 5d82479d89d0cce0359fa013e705059f6727676f (diff) | |
download | gunmake-cbdb3653da95b07fe269ef8cc166f4d7882717b8.tar.gz |
[HAVE_UNISTD_H]: Include unistd.h so it can declare sys_siglist.
-rw-r--r-- | signame.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -23,6 +23,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <config.h> #endif +/* Some systems declare `sys_siglist in <unistd.h>; if + configure defined SYS_SIGLIST_DECLARED, it may expect + to find the declaration there. */ +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + + /* Some systems do not define NSIG in <signal.h>. */ #ifndef NSIG #ifdef _NSIG |