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/if_ep_isa.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/if_ep_isa.c')
-rw-r--r-- | sys/dev/isa/if_ep_isa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/isa/if_ep_isa.c b/sys/dev/isa/if_ep_isa.c index 21440801c95..f9fc2e62477 100644 --- a/sys/dev/isa/if_ep_isa.c +++ b/sys/dev/isa/if_ep_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ep_isa.c,v 1.19 2000/05/29 18:04:08 aaron Exp $ */ +/* $OpenBSD: if_ep_isa.c,v 1.20 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: if_ep_isa.c,v 1.5 1996/05/12 23:52:36 mycroft Exp $ */ /* @@ -81,14 +81,14 @@ #include <dev/isa/isavar.h> #include <dev/isa/elink.h> -int ep_isa_probe __P((struct device *, void *, void *)); -void ep_isa_attach __P((struct device *, struct device *, void *)); +int ep_isa_probe(struct device *, void *, void *); +void ep_isa_attach(struct device *, struct device *, void *); struct cfattach ep_isa_ca = { sizeof(struct ep_softc), ep_isa_probe, ep_isa_attach }; -static void epaddcard __P((int, int, int, u_short)); +static void epaddcard(int, int, int, u_short); /* * This keeps track of which ISAs have been through an ep probe sequence. |