From 94650aa4bac6d9194a1c44ea17a03db69080bc60 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 29 Apr 2002 06:59:24 +0000 Subject: (SIGNUM_BOUND): Do not use WTERMSIG, to avoid depending on and WTERMSIG. Default to 64 instead of 127, since 64 is the largest conceivable number for ancient nonstandard hosts. --- lib/sig2str.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/sig2str.h b/lib/sig2str.h index 3a46a8ce8..4fbd21ce2 100644 --- a/lib/sig2str.h +++ b/lib/sig2str.h @@ -42,8 +42,6 @@ int str2sig (char const *, int *); # define SIGNUM_BOUND (_sys_nsig - 1) #elif defined NSIG # define SIGNUM_BOUND (NSIG - 1) -#elif defined WTERMSIG -# define SIGNUM_BOUND WTERMSIG (~ 0) #else -# define SIGNUM_BOUND 127 +# define SIGNUM_BOUND 64 #endif -- cgit v1.2.3-70-g09d2