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/opl_ess.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/opl_ess.c')
-rw-r--r-- | sys/dev/isa/opl_ess.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/isa/opl_ess.c b/sys/dev/isa/opl_ess.c index 9dc327fb938..f395b953852 100644 --- a/sys/dev/isa/opl_ess.c +++ b/sys/dev/isa/opl_ess.c @@ -1,4 +1,4 @@ -/* $OpenBSD: opl_ess.c,v 1.1 1999/06/22 16:20:04 niklas Exp $ */ +/* $OpenBSD: opl_ess.c,v 1.2 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: opl_ess.c,v 1.3 1998/12/08 14:26:57 augustss Exp $ */ /* @@ -58,10 +58,10 @@ #include <dev/isa/isavar.h> #include <dev/isa/essvar.h> -extern int ess_speaker_ctl __P((void *, int)); +extern int ess_speaker_ctl(void *, int); -int opl_ess_match __P((struct device *, void *, void *)); -void opl_ess_attach __P((struct device *, struct device *, void *)); +int opl_ess_match(struct device *, void *, void *); +void opl_ess_attach(struct device *, struct device *, void *); struct cfattach opl_ess_ca = { sizeof (struct opl_softc), opl_ess_match, opl_ess_attach |