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/arch/sparc64/dev/consinit.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc64/dev/consinit.c')
-rw-r--r-- | sys/arch/sparc64/dev/consinit.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/sparc64/dev/consinit.c b/sys/arch/sparc64/dev/consinit.c index f84fa609ff5..df1dbac2f52 100644 --- a/sys/arch/sparc64/dev/consinit.c +++ b/sys/arch/sparc64/dev/consinit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: consinit.c,v 1.6 2002/01/25 03:36:25 jason Exp $ */ +/* $OpenBSD: consinit.c,v 1.7 2002/03/14 01:26:44 millert Exp $ */ /* $NetBSD: consinit.c,v 1.9 2000/10/20 05:32:35 mrg Exp $ */ /*- @@ -60,12 +60,12 @@ #include <dev/usb/ukbdvar.h> -static void prom_cnprobe __P((struct consdev *)); -static void prom_cninit __P((struct consdev *)); -int prom_cngetc __P((dev_t)); -static void prom_cnputc __P((dev_t, int)); -static void prom_cnpollc __P((dev_t, int)); -static void prom_cnputc __P((dev_t, int)); +static void prom_cnprobe(struct consdev *); +static void prom_cninit(struct consdev *); +int prom_cngetc(dev_t); +static void prom_cnputc(dev_t, int); +static void prom_cnpollc(dev_t, int); +static void prom_cnputc(dev_t, int); int stdin = NULL, stdout = NULL; |