comparison src/syssignal.h @ 2655:4769b9c268eb

[xemacs-hg @ 2005-03-12 11:00:20 by malcolmp] syssignal.h: Configure always sets HAVE_DECL_SYS_SIGLIST. Test for non-zero.
author malcolmp
date Sat, 12 Mar 2005 11:00:29 +0000
parents 3580ae2ce979
children aa5ed11f473b
comparison
equal deleted inserted replaced
2654:bc9723c6bc17 2655:4769b9c268eb
268 #endif 268 #endif
269 269
270 /* HAVE_DECL_SYS_SIGLIST is determined by configure. On Linux, it seems, 270 /* HAVE_DECL_SYS_SIGLIST is determined by configure. On Linux, it seems,
271 configure incorrectly fails to find it, so s/linux.h defines 271 configure incorrectly fails to find it, so s/linux.h defines
272 HAVE_SYS_SIGLIST. */ 272 HAVE_SYS_SIGLIST. */
273 #if !defined (HAVE_DECL_SYS_SIGLIST) && !defined (HAVE_SYS_SIGLIST) 273 #if (!defined(HAVE_DECL_SYS_SIGLIST) || !HAVE_DECL_SYS_SIGLIST ) && !defined (HAVE_SYS_SIGLIST)
274 extern const char *sys_siglist[]; 274 extern const char *sys_siglist[];
275 #endif 275 #endif
276 276
277 #ifdef SIGDANGER 277 #ifdef SIGDANGER
278 SIGTYPE memory_warning_signal (int sig); 278 SIGTYPE memory_warning_signal (int sig);