summaryrefslogtreecommitdiff
path: root/make.h
diff options
context:
space:
mode:
Diffstat (limited to 'make.h')
-rw-r--r--make.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/make.h b/make.h
index 2954380..a12538d 100644
--- a/make.h
+++ b/make.h
@@ -55,6 +55,14 @@ extern int errno;
#define SYS_SIGLIST_DECLARED
#endif
+#ifdef HAVE_SYS_SIGLIST
+#ifndef SYS_SIGLIST_DECLARED
+extern char *sys_siglist[];
+#endif
+#else
+#include "signame.h"
+#endif
+
#ifndef isblank
#define isblank(c) ((c) == ' ' || (c) == '\t')
#endif