mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-19 01:24:43 +08:00
* strsignal.c (sys_nsig): Try NSIG and _NSIG.
From-SVN: r16952
This commit is contained in:
parent
01d34110af
commit
e7757d6919
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user