diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-23 21:40:57 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-23 21:40:57 +0000 |
commit | 48baaf1e3293dfd3aea03d1b2e387f85045c417b (patch) | |
tree | 3ce84c41ea72d0f51dac2a699096c0b1069ecaaf /sys/compat/hpux | |
parent | dcc91cdce1f150b1cb6d3c8af2033e3a62ec2477 (diff) |
sigcode -> hpux_sigcode
Diffstat (limited to 'sys/compat/hpux')
-rw-r--r-- | sys/compat/hpux/hpux_compat.c | 4 | ||||
-rw-r--r-- | sys/compat/hpux/hpux_exec.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/hpux/hpux_compat.c b/sys/compat/hpux/hpux_compat.c index 28b3686bd44..ac6bf224d4e 100644 --- a/sys/compat/hpux/hpux_compat.c +++ b/sys/compat/hpux/hpux_compat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_compat.c,v 1.6 1997/01/27 00:00:03 downsj Exp $ */ +/* $OpenBSD: hpux_compat.c,v 1.7 1997/02/23 21:40:55 downsj Exp $ */ /* $NetBSD: hpux_compat.c,v 1.23 1996/01/06 12:44:11 thorpej Exp $ */ /* @@ -107,7 +107,7 @@ int bsdtohpuxerrnomap[NERR] = { /*80*/ BERR,BERR, 11 }; -extern char sigcode[], esigcode[]; +extern char hpux_sigcode[], hpux_esigcode[]; extern struct sysent hpux_sysent[]; extern char *hpux_syscallnames[]; diff --git a/sys/compat/hpux/hpux_exec.c b/sys/compat/hpux/hpux_exec.c index 82b22190cb3..4020c38eb3a 100644 --- a/sys/compat/hpux/hpux_exec.c +++ b/sys/compat/hpux/hpux_exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_exec.c,v 1.6 1996/12/23 02:56:48 deraadt Exp $ */ +/* $OpenBSD: hpux_exec.c,v 1.7 1997/02/23 21:40:56 downsj Exp $ */ /* $NetBSD: hpux_exec.c,v 1.3 1996/01/06 12:44:13 thorpej Exp $ */ /* @@ -64,7 +64,7 @@ #include <machine/hpux_machdep.h> const char hpux_emul_path[] = "/emul/hpux"; -extern char sigcode[], esigcode[]; +extern char hpux_sigcode[], hpux_esigcode[]; extern struct sysent hpux_sysent[]; extern char *hpux_syscallnames[]; extern int bsdtohpuxerrnomap[]; @@ -85,8 +85,8 @@ struct emul emul_hpux = { copyargs, setregs, NULL, - sigcode, - esigcode, + hpux_sigcode, + hpux_esigcode, }; int |