diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-19 13:53:15 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-19 13:53:15 +0000 |
commit | c3ada91906fd6634c78316f716fd9056bda53b8c (patch) | |
tree | a818f0a0df066b43412c8bbc7315b261a9606a93 /sys/arch/amiga | |
parent | ede88e43b531de70f5e2783e6fc654ee55b2b33b (diff) |
From Gordon W Ross (NetBSD):
Use db_regs_t instead of struct mc68020_saved_state
Diffstat (limited to 'sys/arch/amiga')
-rw-r--r-- | sys/arch/amiga/amiga/trap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amiga/amiga/trap.c b/sys/arch/amiga/amiga/trap.c index cec9a854951..8e22cb712e3 100644 --- a/sys/arch/amiga/amiga/trap.c +++ b/sys/arch/amiga/amiga/trap.c @@ -1,5 +1,5 @@ -/* $OpenBSD: trap.c,v 1.9 1997/01/18 12:42:02 niklas Exp $ */ -/* $NetBSD: trap.c,v 1.52 1996/11/13 06:22:20 thorpej Exp $ */ +/* $OpenBSD: trap.c,v 1.10 1997/01/19 13:53:12 niklas Exp $ */ +/* $NetBSD: trap.c,v 1.53 1997/01/16 15:30:57 gwr Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -183,7 +183,7 @@ void trapmmufault __P((int, u_int, u_int, struct frame *, struct proc *, void trap __P((int, u_int, u_int, struct frame)); #ifdef DDB #include <m68k/db_machdep.h> -int kdb_trap __P((int, struct mc68020_saved_state *)); +int kdb_trap __P((int, db_regs_t *)); #endif void syscall __P((register_t, struct frame)); void child_return __P((struct proc *, struct frame)); |