summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1998-09-21 19:14:43 +0000
committerthorpej <thorpej@NetBSD.org>1998-09-21 19:14:43 +0000
commit2cb59aaa0b9d0dcd8752012093d43719d579aac2 (patch)
tree50bd57ae6dfa512dd144ec44c3275e45ebeca125 /include
parentbd8b85cdd8d3414ab4bd7f8400aa4879fa94dea9 (diff)
Declare the size of sys_siglist[] and sys_signame[] to be SIGUSR2+1
instead of _NSIG for now; we need to change these to char **'s, and do a symbol renaming trick on them, eventually (a'la what Todd did with libbfd's target match array).
Diffstat (limited to 'include')
-rw-r--r--include/signal.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/signal.h b/include/signal.h
index c3d151dabe0..4585e500c5e 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -1,4 +1,4 @@
-/* $NetBSD: signal.h,v 1.15 1998/09/13 04:11:51 thorpej Exp $ */
+/* $NetBSD: signal.h,v 1.16 1998/09/21 19:14:43 thorpej Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -49,8 +49,9 @@
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_XOPEN_SOURCE)
-extern __const char *__const sys_signame[_NSIG];
-extern __const char *__const sys_siglist[_NSIG];
+/* XXX XXX XXX */
+extern __const char *__const sys_signame[SIGUSR2+1];
+extern __const char *__const sys_siglist[SIGUSR2+1];
#endif
__BEGIN_DECLS