diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-08 23:23:54 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-08 23:23:54 +0000 |
commit | c7e17867401a13de39348e78559e0255562049bf (patch) | |
tree | 623022f165f8984b7108c1d2db8e548429ecde3b | |
parent | 717c93072720ab452d27ff1a3c47e3ee3a6ff595 (diff) |
empty arg list is named void for convinience, i suppose
-rw-r--r-- | sys/arch/powerpc/include/db_machdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/db_machdep.h b/sys/arch/powerpc/include/db_machdep.h index 53c5c9b5251..3656e4a39f6 100644 --- a/sys/arch/powerpc/include/db_machdep.h +++ b/sys/arch/powerpc/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.8 2001/06/29 06:07:09 drahn Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.9 2001/07/08 23:23:53 mickey Exp $ */ /* $NetBSD: db_machdep.h,v 1.13 1996/04/29 20:50:08 leo Exp $ */ /* @@ -98,7 +98,7 @@ db_regs_t ddb_regs; /* register state */ void kdb_kintr __P((void *)); int kdb_trap __P((int, void *)); void db_save_regs(struct trapframe *frame); -void ddb_trap __P(()); +void ddb_trap __P((void)); #endif /* _KERNEL */ |