aboutsummaryrefslogtreecommitdiffstats
path: root/sh
diff options
context:
space:
mode:
authorThorsten Glaser <tg@mirbsd.org>2009-12-01 15:37:24 +0100
committerThorsten Glaser <tg@mirbsd.org>2010-04-20 18:27:22 +0200
commitb26c8562b0dc21050bd5a6fc40ef5aee1e1f2c96 (patch)
tree28c1fc8dd19967e6cadc15987f0a8967450ccec9 /sh
parent705c944c0e2a50150ffb41707b6b3daebb45cf79 (diff)
downloadsystem_core-b26c8562b0dc21050bd5a6fc40ef5aee1e1f2c96.zip
system_core-b26c8562b0dc21050bd5a6fc40ef5aee1e1f2c96.tar.gz
system_core-b26c8562b0dc21050bd5a6fc40ef5aee1e1f2c96.tar.bz2
sys_signame[] was added to libc, remove conflicting definition
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Diffstat (limited to 'sh')
-rw-r--r--sh/trap.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sh/trap.c b/sh/trap.c
index b3b2db4..7cb5201 100644
--- a/sh/trap.c
+++ b/sh/trap.c
@@ -60,20 +60,6 @@ __RCSID("$NetBSD: trap.c,v 1.31 2005/01/11 19:38:57 christos Exp $");
#include "mystring.h"
#include "var.h"
-static const char *sys_signame[NSIG] = {
- "Unused",
- "HUP", "INT", "QUIT", "ILL",
- "TRAP", "ABRT", "BUS", "FPE",
- "KILL", "USR1", "SEGV", "USR2",
- "PIPE", "ALRM", "TERM",
- "Unknown",
- "CHLD",
- "CONT", "STOP", "TSTP", "TTIN",
- "TTOU", "URG", "XCPU", "XFSZ",
- "VTALRM", "PROF", "WINCH", "IO",
- "PWR", "SYS"
-};
-
/*
* Sigmode records the current value of the signal handlers for the various
* modes. A value of zero means that the current handler is not known.