summaryrefslogtreecommitdiff
path: root/signame.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2005-03-04 12:52:32 +0000
committerPaul Smith <psmith@gnu.org>2005-03-04 12:52:32 +0000
commit28078b517a3151f18cf427be87600803251d732b (patch)
treed963a5674f982ccc6070f1596b8286239f84f5b8 /signame.c
parentcb2f20026908d5c6e48e2cd3e3e65b5f67498d02 (diff)
downloadgunmake-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/signame.c b/signame.c
index 432c312..a6c2a38 100644
--- a/signame.c
+++ b/signame.c
@@ -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)