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/rasops/rasops.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/rasops/rasops.c')
-rw-r--r-- | sys/dev/rasops/rasops.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/rasops/rasops.c b/sys/dev/rasops/rasops.c index 0a843483e02..bc15dfbcbaa 100644 --- a/sys/dev/rasops/rasops.c +++ b/sys/dev/rasops/rasops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.c,v 1.1 2001/03/18 04:32:44 nate Exp $ */ +/* $OpenBSD: rasops.c,v 1.2 2002/03/14 01:27:02 millert Exp $ */ /* $NetBSD: rasops.c,v 1.35 2001/02/02 06:01:01 marcus Exp $ */ /*- @@ -105,13 +105,13 @@ const u_char rasops_isgray[16] = { }; /* Generic functions */ -static void rasops_copyrows __P((void *, int, int, int)); -static int rasops_mapchar __P((void *, int, u_int *)); -static void rasops_cursor __P((void *, int, int, int)); -static int rasops_alloc_cattr __P((void *, int, int, int, long *)); -static int rasops_alloc_mattr __P((void *, int, int, int, long *)); -static void rasops_do_cursor __P((struct rasops_info *)); -static void rasops_init_devcmap __P((struct rasops_info *)); +static void rasops_copyrows(void *, int, int, int); +static int rasops_mapchar(void *, int, u_int *); +static void rasops_cursor(void *, int, int, int); +static int rasops_alloc_cattr(void *, int, int, int, long *); +static int rasops_alloc_mattr(void *, int, int, int, long *); +static void rasops_do_cursor(struct rasops_info *); +static void rasops_init_devcmap(struct rasops_info *); /* * Initalize a 'rasops_info' descriptor. |