# HG changeset patch # User Jim Meyering # Date 1020063564 0 # Node ID 68803dccd5334f65b1d7c469689c646cfb2ff908 # Parent 55d776be7c7cb69190365d521533fd8ac629c53b (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. diff --git a/lib/sig2str.h b/lib/sig2str.h --- a/lib/sig2str.h +++ b/lib/sig2str.h @@ -42,8 +42,6 @@ # 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