diff options
author | 2002-05-28 22:10:03 +0000 | |
---|---|---|
committer | 2002-05-28 22:10:03 +0000 | |
commit | 8bfef4376c0b9324c2b58a06276209e1a42bc2b4 (patch) | |
tree | b26bd9cc12f4934a7178264ea124d17f97e08ef9 /sys/dev/rasops/rasops4.c | |
parent | use correct function name in fatal() (diff) | |
download | wireguard-openbsd-8bfef4376c0b9324c2b58a06276209e1a42bc2b4.tar.xz wireguard-openbsd-8bfef4376c0b9324c2b58a06276209e1a42bc2b4.zip |
o spaces, tabs, spelling cleanup.
o remove unneeded headers.
o makes this to compile if RASOPS_SMALL is defined.
o makes rasops2 to compile.
Diffstat (limited to 'sys/dev/rasops/rasops4.c')
-rw-r--r-- | sys/dev/rasops/rasops4.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/dev/rasops/rasops4.c b/sys/dev/rasops/rasops4.c index d2ea8d88c63..0e924cf8059 100644 --- a/sys/dev/rasops/rasops4.c +++ b/sys/dev/rasops/rasops4.c @@ -1,5 +1,5 @@ -/* $OpenBSD: rasops4.c,v 1.2 2002/03/14 01:27:02 millert Exp $ */ -/* $NetBSD: $ */ +/* $OpenBSD: rasops4.c,v 1.3 2002/05/28 22:10:03 fgsch Exp $ */ +/* $NetBSD: rasops4.c,v 1.4 2001/11/15 09:48:15 lukem Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -37,10 +37,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/cdefs.h> -//__KERNEL_RCSID(0, "$NetBSD: $"); - -#include <sys/types.h> #include <sys/param.h> #include <sys/systm.h> #include <sys/time.h> @@ -60,7 +56,6 @@ 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 /* * 4x1 stamp for optimized character blitting @@ -68,6 +63,7 @@ static void rasops4_makestamp(struct rasops_info *, long); static u_int16_t stamp[16]; static long stamp_attr; static int stamp_mutex; /* XXX see note in README */ +#endif /* * Initialize rasops_info struct for this colordepth. |