Imported from ../bash-2.05a.tar.gz.

This commit is contained in:
Jari Aalto 2001-11-13 17:56:06 +00:00
commit f73dda092b
303 changed files with 37069 additions and 28812 deletions

View file

@ -1,5 +1,5 @@
/* This file is used when cross-compiling for the CYGWIN32 environment on
a Unix machine. */
a Unix machine. It gets copied to signames.h in the build directory. */
#include <sys/types.h>
#include <signal.h>
@ -11,7 +11,7 @@
labelled initializers to set up the array. Note that some entries
might wind up being NULL. */
char *signal_names[NSIG + 2] = {
char *signal_names[NSIG + 3] = {
[0] "EXIT",
#ifdef SIGLOST
@ -250,5 +250,7 @@ char *signal_names[NSIG + 2] = {
[NSIG] "DEBUG",
[NSIG + 1] (char *)0x0
[NSIG + 1] "ERR",
[NSIG + 2] (char *)0x0
};