diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
commit | e63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch) | |
tree | c2aa960c67a99a878c8902943399029fa598683f /sys/dev/rcons/raster_text.c | |
parent | 71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff) |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/dev/rcons/raster_text.c')
-rw-r--r-- | sys/dev/rcons/raster_text.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/rcons/raster_text.c b/sys/dev/rcons/raster_text.c index 5b0188c1296..23133ce12a3 100644 --- a/sys/dev/rcons/raster_text.c +++ b/sys/dev/rcons/raster_text.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raster_text.c,v 1.3 1997/11/07 08:07:39 niklas Exp $ */ +/* $OpenBSD: raster_text.c,v 1.4 2002/03/14 03:16:07 millert Exp $ */ /* $NetBSD: raster_text.c,v 1.3 1995/11/24 23:50:56 cgd Exp $ */ /*- @@ -69,7 +69,7 @@ raster_text( r, x, y, rop, rf, text ) int x, y; int rop; struct raster_font* rf; - unsigned char* text; + unsigned char *text; { return raster_textn( r, x, y, rop, rf, text, strlen( text ) ); } @@ -81,12 +81,12 @@ raster_textn( r, x, y, rop, rf, text, n ) int x, y; int rop; struct raster_font* rf; - unsigned char* text; + unsigned char *text; int n; { int clip; int x1, y1; - struct raster_char* c; + struct raster_char *c; struct raster* charrast; int i; register unsigned char ch; |