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/puc | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/puc')
-rw-r--r-- | sys/dev/puc/com_puc.c | 8 | ||||
-rw-r--r-- | sys/dev/puc/lpt_puc.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/puc/com_puc.c b/sys/dev/puc/com_puc.c index f90beda12e2..0d8fb9b307e 100644 --- a/sys/dev/puc/com_puc.c +++ b/sys/dev/puc/com_puc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_puc.c,v 1.4 2002/01/30 20:45:34 nordin Exp $ */ +/* $OpenBSD: com_puc.c,v 1.5 2002/03/14 01:27:01 millert Exp $ */ /* * Copyright (c) 1997 - 1999, Jason Downs. All rights reserved. @@ -67,8 +67,8 @@ #define com_lcr com_cfcr -int com_puc_match __P((struct device *, void *, void *)); -void com_puc_attach __P((struct device *, struct device *, void *)); +int com_puc_match(struct device *, void *, void *); +void com_puc_attach(struct device *, struct device *, void *); #if NCOM_PUC struct cfattach com_puc_ca = { @@ -82,7 +82,7 @@ struct cfattach pccom_puc_ca = { }; #endif -void com_puc_attach2 __P((struct com_softc *)); +void com_puc_attach2(struct com_softc *); int com_puc_match(parent, match, aux) diff --git a/sys/dev/puc/lpt_puc.c b/sys/dev/puc/lpt_puc.c index c00396e9738..4f375d3c513 100644 --- a/sys/dev/puc/lpt_puc.c +++ b/sys/dev/puc/lpt_puc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpt_puc.c,v 1.2 2000/07/21 17:41:04 mickey Exp $ */ +/* $OpenBSD: lpt_puc.c,v 1.3 2002/03/14 01:27:01 millert Exp $ */ /* $NetBSD: lpt_puc.c,v 1.1 1998/06/26 18:52:41 cgd Exp $ */ /* @@ -50,8 +50,8 @@ #include <dev/ic/lptreg.h> #include <dev/ic/lptvar.h> -int lpt_puc_probe __P((struct device *, void *, void *)); -void lpt_puc_attach __P((struct device *, struct device *, void *)); +int lpt_puc_probe(struct device *, void *, void *); +void lpt_puc_attach(struct device *, struct device *, void *); struct cfattach lpt_puc_ca = { sizeof(struct lpt_softc), lpt_puc_probe, lpt_puc_attach |