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/rasops2.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/rasops/rasops2.c')
-rw-r--r-- | sys/dev/rasops/rasops2.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/rasops/rasops2.c b/sys/dev/rasops/rasops2.c index 0bcc8120a33..de3e37d8af7 100644 --- a/sys/dev/rasops/rasops2.c +++ b/sys/dev/rasops/rasops2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops2.c,v 1.1 2001/03/18 04:32:44 nate Exp $ */ +/* $OpenBSD: rasops2.c,v 1.2 2002/03/14 01:27:02 millert Exp $ */ /* $NetBSD: rasops2.c,v 1.5 2000/04/12 14:22:29 pk Exp $ */ /*- @@ -52,15 +52,15 @@ __KERNEL_RCSID(0, "$NetBSD: rasops2.c,v 1.5 2000/04/12 14:22:29 pk Exp $"); #include <dev/rasops/rasops.h> #include <dev/rasops/rasops_masks.h> -static void rasops2_copycols __P((void *, int, int, int, int)); -static void rasops2_erasecols __P((void *, int, int, int, long)); -static void rasops2_do_cursor __P((struct rasops_info *)); -static void rasops2_putchar __P((void *, int, int col, u_int, long)); +static void rasops2_copycols(void *, int, int, int, int); +static void rasops2_erasecols(void *, int, int, int, long); +static void rasops2_do_cursor(struct rasops_info *); +static void rasops2_putchar(void *, int, int col, u_int, long); #ifndef RASOPS_SMALL -static void rasops2_putchar8 __P((void *, int, int col, u_int, long)); -static void rasops2_putchar12 __P((void *, int, int col, u_int, long)); -static void rasops2_putchar16 __P((void *, int, int col, u_int, long)); -static void rasops2_makestamp __P((struct rasops_info *, long)); +static void rasops2_putchar8(void *, int, int col, u_int, long); +static void rasops2_putchar12(void *, int, int col, u_int, long); +static void rasops2_putchar16(void *, int, int col, u_int, long); +static void rasops2_makestamp(struct rasops_info *, long); #endif /* |