diff options
author | Paul Smith <psmith@gnu.org> | 2005-03-04 12:52:32 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-03-04 12:52:32 +0000 |
commit | 28078b517a3151f18cf427be87600803251d732b (patch) | |
tree | d963a5674f982ccc6070f1596b8286239f84f5b8 /signame.c | |
parent | cb2f20026908d5c6e48e2cd3e3e65b5f67498d02 (diff) | |
download | gunmake-28078b517a3151f18cf427be87600803251d732b.tar.gz |
- Missing docs for $|
- Update NEWS and AUTHORS files.
- Fix support request #103195.
- Apply patch #3679
- Fix handling of sys_siglist in autoconf/etc.
Diffstat (limited to 'signame.c')
-rw-r--r-- | signame.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA. */ Otherwise create our own. */ -#if !defined(SYS_SIGLIST_DECLARED) +#if !defined(HAVE_DECL_SYS_SIGLIST) /* Some systems do not define NSIG in <signal.h>. */ #ifndef NSIG @@ -226,7 +226,7 @@ signame_init (void) return 1; } -#endif /* SYS_SIGLIST_DECLARED */ +#endif /* HAVE_DECL_SYS_SIGLIST */ char * @@ -234,7 +234,7 @@ strsignal (int signal) { static char buf[] = "Signal 12345678901234567890"; -#if !defined(SYS_SIGLIST_DECLARED) +#if !defined(HAVE_DECL_SYS_SIGLIST) static char sig_initted = 0; if (!sig_initted) |