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/rasops1.c | |
parent | 527e8e2baa49f43ca9b20cb839f1d5f28248e627 (diff) |
Unstaticize functions, for my ddb sessions pleasure.
Plus it makes hangman more difficult.
Diffstat (limited to 'sys/dev/rasops/rasops1.c')
-rw-r--r-- | sys/dev/rasops/rasops1.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/rasops/rasops1.c b/sys/dev/rasops/rasops1.c index 1665750a3c9..50387b59125 100644 --- a/sys/dev/rasops/rasops1.c +++ b/sys/dev/rasops/rasops1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops1.c,v 1.3 2002/05/28 22:10:03 fgsch Exp $ */ +/* $OpenBSD: rasops1.c,v 1.4 2002/07/27 22:17:49 miod Exp $ */ /* $NetBSD: rasops1.c,v 1.11 2000/04/12 14:22:29 pk Exp $ */ /*- @@ -47,13 +47,13 @@ #include <dev/rasops/rasops.h> #include <dev/rasops/rasops_masks.h> -static void rasops1_copycols(void *, int, int, int, int); -static void rasops1_erasecols(void *, int, int, int, long); -static void rasops1_do_cursor(struct rasops_info *); -static void rasops1_putchar(void *, int, int col, u_int, long); +void rasops1_copycols(void *, int, int, int, int); +void rasops1_erasecols(void *, int, int, int, long); +void rasops1_do_cursor(struct rasops_info *); +void rasops1_putchar(void *, int, int col, u_int, long); #ifndef RASOPS_SMALL -static void rasops1_putchar8(void *, int, int col, u_int, long); -static void rasops1_putchar16(void *, int, int col, u_int, long); +void rasops1_putchar8(void *, int, int col, u_int, long); +void rasops1_putchar16(void *, int, int col, u_int, long); #endif /* @@ -88,7 +88,7 @@ rasops1_init(ri) /* * Paint a single character. This is the generic version, this is ugly. */ -static void +void rasops1_putchar(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -236,7 +236,7 @@ rasops1_putchar(cookie, row, col, uc, attr) /* * Paint a single character. This is for 8-pixel wide fonts. */ -static void +void rasops1_putchar8(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -301,7 +301,7 @@ rasops1_putchar8(cookie, row, col, uc, attr) /* * Paint a single character. This is for 16-pixel wide fonts. */ -static void +void rasops1_putchar16(cookie, row, col, uc, attr) void *cookie; int row, col; |