diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-05-19 04:11:32 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-05-19 04:11:32 +0000 |
commit | 757b5ac062ae44ec2edff9c36a5d01de68d93813 (patch) | |
tree | 51f48d961ee5660e507b4675b13604332dd0b962 /sys/arch/cats/pci/pcib.c | |
parent | b0110d5f84150bee08ac8d665bb666d29f1c83b4 (diff) |
de __P of sys/arch/cats.
Diffstat (limited to 'sys/arch/cats/pci/pcib.c')
-rw-r--r-- | sys/arch/cats/pci/pcib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/cats/pci/pcib.c b/sys/arch/cats/pci/pcib.c index 12061487b8c..8825053f82a 100644 --- a/sys/arch/cats/pci/pcib.c +++ b/sys/arch/cats/pci/pcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcib.c,v 1.1 2004/02/01 05:12:54 drahn Exp $ */ +/* $OpenBSD: pcib.c,v 1.2 2004/05/19 04:11:31 drahn Exp $ */ /* $NetBSD: pcib.c,v 1.4 2003/01/01 01:25:34 thorpej Exp $ */ /*- @@ -54,8 +54,8 @@ #include "isadma.h" -int pcibmatch __P((struct device *, void *, void *)); -void pcibattach __P((struct device *, struct device *, void *)); +int pcibmatch (struct device *, void *, void *); +void pcibattach (struct device *, struct device *, void *); struct cfattach pcib_ca = { sizeof(struct device), pcibmatch, pcibattach @@ -66,8 +66,8 @@ struct cfdriver pcib_cd = { }; -void pcib_callback __P((struct device *)); -int pcib_print __P((void *, const char *)); +void pcib_callback (struct device *); +int pcib_print (void *, const char *); int pcibmatch(parent, match, aux) |