From: Roland McGrath Date: Wed, 14 Apr 1993 17:34:15 +0000 (+0000) Subject: Formerly make.h.~68~ X-Git-Tag: 3.70.2~319 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2fae4442e2fd4b420bae09b38a4e8b16f823b3bc;p=thirdparty%2Fmake.git Formerly make.h.~68~ --- diff --git a/make.h b/make.h index d1a3a699..6ac3981e 100644 --- a/make.h +++ b/make.h @@ -44,6 +44,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ extern int errno; #endif +#ifndef isblank +#define isblank(c) ((c) == ' ' || (c) == '\t') +#endif + #ifdef HAVE_UNISTD_H #include #ifdef _POSIX_VERSION @@ -68,12 +72,13 @@ extern char *sys_siglist[]; #include "signame.h" #endif -#ifndef isblank -#define isblank(c) ((c) == ' ' || (c) == '\t') -#endif - -#if !defined(NSIG) && defined(_NSIG) +/* Some systems do not define NSIG in . */ +#ifndef NSIG +#ifdef _NSIG #define NSIG _NSIG +#else +#define NSIG 32 +#endif #endif #ifndef RETSIGTYPE