* strsignal.c (sys_nsig): Try NSIG and _NSIG.

From-SVN: r16952
This commit is contained in:
Jeffrey A Law 1997-12-05 00:22:32 +00:00 committed by Jeff Law
parent 01d34110af
commit e7757d6919
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Dec 4 17:25:19 1997 Jeffrey A Law (law@cygnus.com)
* strsignal.c (sys_nsig): Try NSIG and _NSIG.
Tue Oct 28 23:41:15 1997 Judy Goldberg <jodyg@idt.net>
* Makefile.in (CFILES): Add pexecute.c.

View File

@ -243,7 +243,13 @@ static const char **sys_siglist;
#else
#ifdef NSIG
static int sys_nsig = NSIG;
#else
#ifdef _NSIG
static int sys_nsig = NSIG;
#endif
#endif
extern const char * const sys_siglist[];
#endif