changeset 886:05a1e41f2dd4

[project @ 1994-11-06 01:50:53 by jwe]
author jwe
date Sun, 06 Nov 1994 01:53:24 +0000
parents f95973bfc664
children e03b16bd8b52
files acconfig.h src/sighandlers.cc
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/acconfig.h	Sun Nov 06 01:43:19 1994 +0000
+++ b/acconfig.h	Sun Nov 06 01:53:24 1994 +0000
@@ -37,6 +37,9 @@
 /* Define if you have sgtty.h. */
 #undef HAVE_SGTTY_H
 
+/* Define if your system has a sys_siglist variable. */
+#undef HAVE_SYS_SIGLIST
+
 /* Define if you have termios.h. */
 #undef HAVE_TERMIOS_H
 
--- a/src/sighandlers.cc	Sun Nov 06 01:43:19 1994 +0000
+++ b/src/sighandlers.cc	Sun Nov 06 01:53:24 1994 +0000
@@ -47,7 +47,7 @@
 static void
 my_friendly_exit (const char *sig_name, int sig_number)
 {
-  error ("caught %s -- stopping myself...", sig_name);
+  error ("%s -- stopping myself...", sig_name);
   clean_up_and_exit (sig_number);
 }
 
@@ -220,7 +220,7 @@
 #endif
 }
 
-#ifndef SYS_SIGLIST_DECLARED
+#ifndef HAVE_SYS_SIGLIST
 char *sys_siglist[NSIG + 1] =
 {
 #ifdef AIX