Commit e7757d69 by Jeffrey A Law Committed by Jeff Law

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

From-SVN: r16952
parent 01d34110
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment