diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/isa/sb_isa.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/sb_isa.c')
-rw-r--r-- | sys/dev/isa/sb_isa.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/isa/sb_isa.c b/sys/dev/isa/sb_isa.c index 7d00586ca90..a4ced78c864 100644 --- a/sys/dev/isa/sb_isa.c +++ b/sys/dev/isa/sb_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sb_isa.c,v 1.5 2001/11/01 17:14:10 millert Exp $ */ +/* $OpenBSD: sb_isa.c,v 1.6 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: sb_isa.c,v 1.15 1997/11/30 15:32:25 drochner Exp $ */ /* @@ -58,15 +58,15 @@ #include <dev/isa/sbdspvar.h> -static int sbfind __P((struct device *, struct sbdsp_softc *, struct isa_attach_args *)); +static int sbfind(struct device *, struct sbdsp_softc *, struct isa_attach_args *); #define __BROKEN_INDIRECT_CONFIG /* XXX */ #ifdef __BROKEN_INDIRECT_CONFIG -int sb_isa_match __P((struct device *, void *, void *)); +int sb_isa_match(struct device *, void *, void *); #else -int sb_isa_match __P((struct device *, struct cfdata *, void *)); +int sb_isa_match(struct device *, struct cfdata *, void *); #endif -void sb_isa_attach __P((struct device *, struct device *, void *)); +void sb_isa_attach(struct device *, struct device *, void *); struct cfattach sb_isa_ca = { sizeof(struct sbdsp_softc), sb_isa_match, sb_isa_attach |