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/pci/if_xl_pci.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/pci/if_xl_pci.c')
-rw-r--r-- | sys/dev/pci/if_xl_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_xl_pci.c b/sys/dev/pci/if_xl_pci.c index f0a28143e70..8c9cec8817f 100644 --- a/sys/dev/pci/if_xl_pci.c +++ b/sys/dev/pci/if_xl_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xl_pci.c,v 1.10 2001/11/06 19:53:19 miod Exp $ */ +/* $OpenBSD: if_xl_pci.c,v 1.11 2002/03/14 01:26:59 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -91,9 +91,9 @@ #include <dev/ic/xlreg.h> -int xl_pci_match __P((struct device *, void *, void *)); -void xl_pci_attach __P((struct device *, struct device *, void *)); -void xl_pci_intr_ack __P((struct xl_softc *)); +int xl_pci_match(struct device *, void *, void *); +void xl_pci_attach(struct device *, struct device *, void *); +void xl_pci_intr_ack(struct xl_softc *); struct cfattach xl_pci_ca = { sizeof(struct xl_softc), xl_pci_match, xl_pci_attach, |