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/rasops2.c | |
parent | 527e8e2baa49f43ca9b20cb839f1d5f28248e627 (diff) |
Unstaticize functions, for my ddb sessions pleasure.
Plus it makes hangman more difficult.
Diffstat (limited to 'sys/dev/rasops/rasops2.c')
-rw-r--r-- | sys/dev/rasops/rasops2.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/dev/rasops/rasops2.c b/sys/dev/rasops/rasops2.c index f490c64e7c5..c7e8d452050 100644 --- a/sys/dev/rasops/rasops2.c +++ b/sys/dev/rasops/rasops2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops2.c,v 1.4 2002/05/29 00:22:10 fgsch Exp $ */ +/* $OpenBSD: rasops2.c,v 1.5 2002/07/27 22:17:49 miod Exp $ */ /* $NetBSD: rasops2.c,v 1.5 2000/04/12 14:22:29 pk Exp $ */ /*- @@ -47,15 +47,15 @@ #include <dev/rasops/rasops.h> #include <dev/rasops/rasops_masks.h> -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); +void rasops2_copycols(void *, int, int, int, int); +void rasops2_erasecols(void *, int, int, int, long); +void rasops2_do_cursor(struct rasops_info *); +void rasops2_putchar(void *, int, int col, u_int, long); #ifndef RASOPS_SMALL -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); +void rasops2_putchar8(void *, int, int col, u_int, long); +void rasops2_putchar12(void *, int, int col, u_int, long); +void rasops2_putchar16(void *, int, int col, u_int, long); +void rasops2_makestamp(struct rasops_info *, long); /* * 4x1 stamp for optimized character blitting @@ -102,7 +102,7 @@ rasops2_init(ri) /* * Paint a single character. This is the generic version, this is ugly. */ -static void +void rasops2_putchar(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -217,7 +217,7 @@ rasops2_putchar(cookie, row, col, uc, attr) /* * Put a single character. This is the generic version. */ -static void +void rasops2_putchar(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -232,7 +232,7 @@ rasops2_putchar(cookie, row, col, uc, attr) /* * Recompute the blitting stamp. */ -static void +void rasops2_makestamp(ri, attr) struct rasops_info *ri; long attr; @@ -254,7 +254,7 @@ rasops2_makestamp(ri, attr) /* * Put a single character. This is for 8-pixel wide fonts. */ -static void +void rasops2_putchar8(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -324,7 +324,7 @@ rasops2_putchar8(cookie, row, col, uc, attr) /* * Put a single character. This is for 12-pixel wide fonts. */ -static void +void rasops2_putchar12(cookie, row, col, uc, attr) void *cookie; int row, col; @@ -397,7 +397,7 @@ rasops2_putchar12(cookie, row, col, uc, attr) /* * Put a single character. This is for 16-pixel wide fonts. */ -static void +void rasops2_putchar16(cookie, row, col, uc, attr) void *cookie; int row, col; |