diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-03-12 18:38:53 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-03-12 18:38:53 +0000 |
commit | a62b3dc3d0382f6b6dcfe3bdf994c064524d9da6 (patch) | |
tree | 4772cd004ca679a26ba3bb9bcd31dfa5fbfccc45 /sys | |
parent | 33c58ee00ea1a18f8aee7accbbd539ca35c6b637 (diff) |
use own hpux_sigcode
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/hpux/hppa/hpux_exec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/hpux/hppa/hpux_exec.c b/sys/compat/hpux/hppa/hpux_exec.c index f2ec546075c..3a865e041e1 100644 --- a/sys/compat/hpux/hppa/hpux_exec.c +++ b/sys/compat/hpux/hppa/hpux_exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_exec.c,v 1.1 2004/07/09 21:48:21 mickey Exp $ */ +/* $OpenBSD: hpux_exec.c,v 1.2 2005/03/12 18:38:52 mickey Exp $ */ /* * Copyright (c) 2004 Michael Shalayeff. All rights reserved. @@ -62,7 +62,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[]; #ifdef SYSCALL_DEBUG extern char *hpux_syscallnames[]; @@ -89,8 +89,8 @@ struct emul emul_hpux = { copyargs, hpux_setregs, NULL, - sigcode, - esigcode, + hpux_sigcode, + hpux_esigcode, }; int |