NSIG is not always defined
authorceriel <none@none>
Tue, 22 Oct 1991 09:07:31 +0000 (09:07 +0000)
committerceriel <none@none>
Tue, 22 Oct 1991 09:07:31 +0000 (09:07 +0000)
util/int/m_sigtrp.c

index 3b30707..b470b64 100644 (file)
@@ -23,6 +23,9 @@
 
 #define        UNIX_trap(sn)   (SIGILL <= sn && sn <= SIGSYS)
 
+#ifndef NSIG
+#define NSIG _NSIG
+#endif
 PRIVATE int sig_map[NSIG+1];           /* maps signals onto trap numbers */
 
 PRIVATE int HndlIntSig();              /* handle signal to interpreter */