diff options
author | 2002-03-14 01:26:25 +0000 | |
---|---|---|
committer | 2002-03-14 01:26:25 +0000 | |
commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/dev/rasops/rasops4.c | |
parent | compare pointers with NULL not 0 (diff) | |
download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/rasops/rasops4.c')
-rw-r--r-- | sys/dev/rasops/rasops4.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/rasops/rasops4.c b/sys/dev/rasops/rasops4.c index 6ec6c1c0a18..d2ea8d88c63 100644 --- a/sys/dev/rasops/rasops4.c +++ b/sys/dev/rasops/rasops4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops4.c,v 1.1 2001/03/18 04:32:45 nate Exp $ */ +/* $OpenBSD: rasops4.c,v 1.2 2002/03/14 01:27:02 millert Exp $ */ /* $NetBSD: $ */ /*- @@ -51,15 +51,15 @@ #include <dev/rasops/rasops.h> #include <dev/rasops/rasops_masks.h> -static void rasops4_copycols __P((void *, int, int, int, int)); -static void rasops4_erasecols __P((void *, int, int, int, long)); -static void rasops4_do_cursor __P((struct rasops_info *)); -static void rasops4_putchar __P((void *, int, int col, u_int, long)); +static void rasops4_copycols(void *, int, int, int, int); +static void rasops4_erasecols(void *, int, int, int, long); +static void rasops4_do_cursor(struct rasops_info *); +static void rasops4_putchar(void *, int, int col, u_int, long); #ifndef RASOPS_SMALL -static void rasops4_putchar8 __P((void *, int, int col, u_int, long)); -static void rasops4_putchar12 __P((void *, int, int col, u_int, long)); -static void rasops4_putchar16 __P((void *, int, int col, u_int, long)); -static void rasops4_makestamp __P((struct rasops_info *, long)); +static void rasops4_putchar8(void *, int, int col, u_int, long); +static void rasops4_putchar12(void *, int, int col, u_int, long); +static void rasops4_putchar16(void *, int, int col, u_int, long); +static void rasops4_makestamp(struct rasops_info *, long); #endif /* |