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/wscons/wscons_raster.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/wscons/wscons_raster.h')
-rw-r--r-- | sys/dev/wscons/wscons_raster.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/wscons/wscons_raster.h b/sys/dev/wscons/wscons_raster.h index 6a44533d74c..1f3f05438cf 100644 --- a/sys/dev/wscons/wscons_raster.h +++ b/sys/dev/wscons/wscons_raster.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wscons_raster.h,v 1.5 2000/05/16 23:49:11 mickey Exp $ */ +/* $OpenBSD: wscons_raster.h,v 1.6 2002/03/14 01:27:03 millert Exp $ */ /* $NetBSD: wscons_raster.h,v 1.5 1999/02/12 11:25:23 drochner Exp $ */ /* @@ -81,17 +81,17 @@ struct rcons { #define RC_CURSOR 0x004 /* cursor currently displayed */ /* Initialization functions. */ -void rcons_init __P((struct rcons *rc, int mrow, int mcol)); +void rcons_init(struct rcons *rc, int mrow, int mcol); /* Console emulation interface functions. See ansicons.h for more info. */ -void rcons_cursor __P((void *, int, int, int)); -void rcons_invert __P((void *, int)); -int rcons_mapchar __P((void *, int, unsigned int *)); -void rcons_putchar __P((void *, int, int, u_int, long)); -void rcons_copycols __P((void *, int, int, int, int)); -void rcons_erasecols __P((void *, int, int, int, long)); -void rcons_copyrows __P((void *, int, int, int)); -void rcons_eraserows __P((void *, int, int, long)); -int rcons_alloc_attr __P((void *, int, int, int, long *)); +void rcons_cursor(void *, int, int, int); +void rcons_invert(void *, int); +int rcons_mapchar(void *, int, unsigned int *); +void rcons_putchar(void *, int, int, u_int, long); +void rcons_copycols(void *, int, int, int, int); +void rcons_erasecols(void *, int, int, int, long); +void rcons_copyrows(void *, int, int, int); +void rcons_eraserows(void *, int, int, long); +int rcons_alloc_attr(void *, int, int, int, long *); #endif /* _DEV_PSEUDO_RCONS_H_ */ |