diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
commit | e63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch) | |
tree | c2aa960c67a99a878c8902943399029fa598683f /sys/arch/mac68k/include | |
parent | 71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff) |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/arch/mac68k/include')
-rw-r--r-- | sys/arch/mac68k/include/cpu.h | 4 | ||||
-rw-r--r-- | sys/arch/mac68k/include/psc.h | 10 | ||||
-rw-r--r-- | sys/arch/mac68k/include/viareg.h | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/sys/arch/mac68k/include/cpu.h b/sys/arch/mac68k/include/cpu.h index bee0b440bf6..9d72d9062a9 100644 --- a/sys/arch/mac68k/include/cpu.h +++ b/sys/arch/mac68k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.23 2002/03/14 01:26:35 millert Exp $ */ +/* $OpenBSD: cpu.h,v 1.24 2002/03/14 03:15:55 millert Exp $ */ /* $NetBSD: cpu.h,v 1.45 1997/02/10 22:13:40 scottr Exp $ */ /* @@ -297,7 +297,7 @@ struct fpframe; struct pcb; /* machdep.c */ -void mac68k_set_bell_callback __P((int (*)(void *, int, int, int), void *)); +void mac68k_set_bell_callback(int (*)(void *, int, int, int), void *); int mac68k_ring_bell(int, int, int); u_int get_mapping(void); diff --git a/sys/arch/mac68k/include/psc.h b/sys/arch/mac68k/include/psc.h index 4e2a4436a49..59f28b5f51b 100644 --- a/sys/arch/mac68k/include/psc.h +++ b/sys/arch/mac68k/include/psc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psc.h,v 1.3 2002/03/14 01:26:35 millert Exp $ */ +/* $OpenBSD: psc.h,v 1.4 2002/03/14 03:15:55 millert Exp $ */ /* $NetBSD: psc.h,v 1.3 1998/04/24 05:27:24 scottr Exp $ */ /*- @@ -39,10 +39,10 @@ extern volatile u_int8_t *PSCBase; void psc_init(void); -int add_psc_lev3_intr __P((void (*)(void *), void *)); -int add_psc_lev4_intr __P((int, int (*)(void *), void *)); -int add_psc_lev5_intr __P((int, void (*)(void *), void *)); -int add_psc_lev6_intr __P((int, void (*)(void *), void *)); +int add_psc_lev3_intr(void (*)(void *), void *); +int add_psc_lev4_intr(int, int (*)(void *), void *); +int add_psc_lev5_intr(int, void (*)(void *), void *); +int add_psc_lev6_intr(int, void (*)(void *), void *); int remove_psc_lev3_intr(void); int remove_psc_lev4_intr(int); diff --git a/sys/arch/mac68k/include/viareg.h b/sys/arch/mac68k/include/viareg.h index c864493457a..4dfd890c8d4 100644 --- a/sys/arch/mac68k/include/viareg.h +++ b/sys/arch/mac68k/include/viareg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: viareg.h,v 1.9 2002/03/14 01:26:35 millert Exp $ */ +/* $OpenBSD: viareg.h,v 1.10 2002/03/14 03:15:55 millert Exp $ */ /* $NetBSD: viareg.h,v 1.6 1997/02/28 07:41:41 scottr Exp $ */ /*- @@ -194,10 +194,10 @@ void via_init(void); int rbv_vidstatus(void); void via_shutdown(void); void via_set_modem(int); -int add_nubus_intr __P((int, void (*)(void *, int), void *)); +int add_nubus_intr(int, void (*)(void *, int), void *); void enable_nubus_intr(void); -void via1_register_irq __P((int, void (*)(void *), void *)); -void via2_register_irq __P((int, void (*)(void *), void *)); +void via1_register_irq(int, void (*)(void *), void *); +void via2_register_irq(int, void (*)(void *), void *); extern void (*via1itab[7])(void *); extern void (*via2itab[7])(void *); |