diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-27 22:17:50 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-27 22:17:50 +0000 |
commit | aa8f6caf82bd4c4b147df026e85c6cd93a3f1877 (patch) | |
tree | f799d4a203bead75cb78f5eb7733cb673119bb5e /sys/dev/rasops/rasops24.c | |
parent | 527e8e2baa49f43ca9b20cb839f1d5f28248e627 (diff) |
Unstaticize functions, for my ddb sessions pleasure.
Plus it makes hangman more difficult.
Diffstat (limited to 'sys/dev/rasops/rasops24.c')
-rw-r--r-- | sys/dev/rasops/rasops24.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/dev/rasops/rasops24.c b/sys/dev/rasops/rasops24.c index 3a658d4fbc8..50b68a18566 100644 --- a/sys/dev/rasops/rasops24.c +++ b/sys/dev/rasops/rasops24.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops24.c,v 1.4 2002/05/28 22:10:03 fgsch Exp $ */ +/* $OpenBSD: rasops24.c,v 1.5 2002/07/27 22:17:49 miod Exp $ */ /* $NetBSD: rasops24.c,v 1.12 2000/04/12 14:22:29 pk Exp $ */ /*- @@ -47,14 +47,14 @@ #include <dev/wscons/wsconsio.h> #include <dev/rasops/rasops.h> -static void rasops24_erasecols(void *, int, int, int, long); -static void rasops24_eraserows(void *, int, int, long); -static void rasops24_putchar(void *, int, int, u_int, long attr); +void rasops24_erasecols(void *, int, int, int, long); +void rasops24_eraserows(void *, int, int, long); +void rasops24_putchar(void *, int, int, u_int, long attr); #ifndef RASOPS_SMALL -static void rasops24_putchar8(void *, int, int, u_int, long attr); -static void rasops24_putchar12(void *, int, int, u_int, long attr); -static void rasops24_putchar16(void *, int, int, u_int, long attr); -static void rasops24_makestamp(struct rasops_info *, long); +void rasops24_putchar8(void *, int, int, u_int, long attr); +void rasops24_putchar12(void *, int, int, u_int, long attr); +void rasops24_putchar16(void *, int, int, u_int, long attr); +void rasops24_makestamp(struct rasops_info *, long); /* * 4x1 stamp for optimized character blitting @@ -119,7 +119,7 @@ rasops24_init(ri) * Put a single character. This is the generic version. * XXX this bites - we should use masks. */ -static void +void rasops24_putchar(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -203,7 +203,7 @@ rasops24_putchar(cookie, row, col, uc, attr) /* * Recompute the blitting stamp. */ -static void +void rasops24_makestamp(ri, attr) struct rasops_info *ri; long attr; @@ -246,7 +246,7 @@ rasops24_makestamp(ri, attr) /* * Put a single character. This is for 8-pixel wide fonts. */ -static void +void rasops24_putchar8(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -327,7 +327,7 @@ rasops24_putchar8(cookie, row, col, uc, attr) /* * Put a single character. This is for 12-pixel wide fonts. */ -static void +void rasops24_putchar12(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -415,7 +415,7 @@ rasops24_putchar12(cookie, row, col, uc, attr) /* * Put a single character. This is for 16-pixel wide fonts. */ -static void +void rasops24_putchar16(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -511,7 +511,7 @@ rasops24_putchar16(cookie, row, col, uc, attr) /* * Erase rows. This is nice and easy due to alignment. */ -static void +void rasops24_eraserows(cookie, row, num, attr) void *cookie; int row, num; @@ -615,7 +615,7 @@ rasops24_eraserows(cookie, row, num, attr) /* * Erase columns. */ -static void +void rasops24_erasecols(cookie, row, col, num, attr) void *cookie; int row, col, num; |