diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-05-09 22:25:16 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-05-09 22:25:16 +0000 |
commit | 655aa27babf6382228179fb12ae1a926419b2c8b (patch) | |
tree | 9c3887899f86e6daec690b86582d6d385239f5fc /sys/arch/m68k/include/db_machdep.h | |
parent | 4fcfa0d18adf17b5dd3914fab14708d4514bd22e (diff) |
From NetBSD:
Prototype + -Wall fixes.
Clean up a few printf format strings.
Added an include for the sunos_sendsig prototype
Fix "prototype disagrees about inline" error.
Diffstat (limited to 'sys/arch/m68k/include/db_machdep.h')
-rw-r--r-- | sys/arch/m68k/include/db_machdep.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/db_machdep.h b/sys/arch/m68k/include/db_machdep.h index aa5ea85aad8..1374f5e5db3 100644 --- a/sys/arch/m68k/include/db_machdep.h +++ b/sys/arch/m68k/include/db_machdep.h @@ -1,4 +1,5 @@ -/* $NetBSD: db_machdep.h,v 1.12 1994/10/26 07:50:44 cgd Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.2 1996/05/09 22:25:15 niklas Exp $ */ +/* $NetBSD: db_machdep.h,v 1.13 1996/04/29 20:50:08 leo Exp $ */ /* * Mach Operating System @@ -104,4 +105,11 @@ db_regs_t ddb_regs; /* register state */ #define inst_load(ins) 0 #define inst_store(ins) 0 +#ifdef _KERNEL + +void kdb_kintr __P((struct mc68020_saved_state *)); +int kdb_trap __P((int, struct mc68020_saved_state *)); + +#endif /* _KERNEL */ + #endif /* _M68K_DB_MACHDEP_H_ */ |