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/cons.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc64/dev/cons.h')
-rw-r--r-- | sys/arch/sparc64/dev/cons.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/sparc64/dev/cons.h b/sys/arch/sparc64/dev/cons.h index 6dd5fd15136..0234189e786 100644 --- a/sys/arch/sparc64/dev/cons.h +++ b/sys/arch/sparc64/dev/cons.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cons.h,v 1.1 2001/08/19 05:21:37 jason Exp $ */ +/* $OpenBSD: cons.h,v 1.2 2002/03/14 01:26:44 millert Exp $ */ /* $NetBSD: cons.h,v 1.3 2000/05/19 05:26:17 eeh Exp $ */ /*- @@ -48,22 +48,22 @@ struct pconssoftc { /* These are shared with the consinit OBP console */ extern int stdin, stdout; -void pcons_cnpollc __P((dev_t dev, int on)); +void pcons_cnpollc(dev_t dev, int on); struct consdev; struct zs_chanstate; extern void *zs_conschan; -extern void nullcnprobe __P((struct consdev *)); +extern void nullcnprobe(struct consdev *); -extern int zs_getc __P((void *arg)); -extern void zs_putc __P((void *arg, int c)); +extern int zs_getc(void *arg); +extern void zs_putc(void *arg, int c); struct zschan * -zs_get_chan_addr __P((int zsc_unit, int channel)); +zs_get_chan_addr(int zsc_unit, int channel); #ifdef KGDB -void zs_kgdb_init __P((void)); -void zskgdb __P((struct zs_chanstate *)); +void zs_kgdb_init(void); +void zskgdb(struct zs_chanstate *); #endif |