diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-08 07:07:51 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-08 07:07:51 +0000 |
commit | e42c4c0c25964c9895aace4340e113f39f0db735 (patch) | |
tree | 04a48d6b3cf63738102e8f8985f22e06f8d509b1 /sys/arch | |
parent | 27915cbcbfdf4bf85f2871974af648740f158e12 (diff) |
Proto regdump here until after 2.2, remove some statics
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/m68k/m68k/regdump.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/arch/m68k/m68k/regdump.c b/sys/arch/m68k/m68k/regdump.c index bf5c89f3cf5..a7ab0f5a8c5 100644 --- a/sys/arch/m68k/m68k/regdump.c +++ b/sys/arch/m68k/m68k/regdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: regdump.c,v 1.1 1997/09/19 17:27:14 niklas Exp $ */ +/* $OpenBSD: regdump.c,v 1.2 1997/10/08 07:07:50 niklas Exp $ */ /* $NetBSD: regdump.c,v 1.1 1997/04/09 19:21:47 thorpej Exp $ */ /* @@ -51,8 +51,11 @@ #include <machine/reg.h> #include <machine/psl.h> -static void dumpmem __P((int *, int, int)); -static char *hexstr __P((int, int)); +/* XXX until m68k/cpu.h has it */ +void regdump __P((struct trapframe *, int)); + +void dumpmem __P((int *, int, int)); +char *hexstr __P((int, int)); /* * Print a register and stack dump. |