summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorEric Jackson <ericj@cvs.openbsd.org>2000-08-12 20:12:39 +0000
committerEric Jackson <ericj@cvs.openbsd.org>2000-08-12 20:12:39 +0000
commita33c5d3a5f4d74a7366e4e4c3f9c1296b25d2b66 (patch)
treebae4e3b2097d30be90c612bec9045784d79f024a /sys
parentce502ce2fd129d30f9d91b7cbfbcf7a0bac04a6e (diff)
use osf1_sigcode
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/osf1/osf1_exec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/osf1/osf1_exec.c b/sys/compat/osf1/osf1_exec.c
index 036c36cc3f1..1b5dd51466a 100644
--- a/sys/compat/osf1/osf1_exec.c
+++ b/sys/compat/osf1/osf1_exec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: osf1_exec.c,v 1.1 2000/08/04 15:47:55 ericj Exp $ */
+/* $OpenBSD: osf1_exec.c,v 1.2 2000/08/12 20:12:38 ericj Exp $ */
/* $NetBSD$ */
/*
@@ -72,7 +72,7 @@ static void *osf1_copyargs(struct exec_package *pack,
extern struct sysent osf1_sysent[];
extern void cpu_exec_ecoff_setregs __P((struct proc *, struct exec_package *,
u_long, register_t *));
-extern char sigcode[], esigcode[];
+extern char osf1_sigcode[], osf1_esigcode[];
struct emul emul_osf1 = {
"osf1",
@@ -90,8 +90,8 @@ struct emul emul_osf1 = {
copyargs,
cpu_exec_ecoff_setregs,
NULL,
- sigcode,
- esigcode,
+ osf1_sigcode,
+ osf1_esigcode,
};
#if 0