mirror of git://gcc.gnu.org/git/gcc.git
* 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>
|
Tue Oct 28 23:41:15 1997 Judy Goldberg <jodyg@idt.net>
|
||||||
|
|
||||||
* Makefile.in (CFILES): Add pexecute.c.
|
* Makefile.in (CFILES): Add pexecute.c.
|
||||||
|
|
|
@ -243,7 +243,13 @@ static const char **sys_siglist;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#ifdef NSIG
|
||||||
static int sys_nsig = NSIG;
|
static int sys_nsig = NSIG;
|
||||||
|
#else
|
||||||
|
#ifdef _NSIG
|
||||||
|
static int sys_nsig = NSIG;
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
extern const char * const sys_siglist[];
|
extern const char * const sys_siglist[];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue