diff options
| author | dholland <dholland@NetBSD.org> | 2009-08-12 08:04:05 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2009-08-12 08:04:05 +0000 |
| commit | 8916e2056e90ba2c157dfd2b98fb48837d565646 (patch) | |
| tree | f7b2cd85d32a6cdf7e2f0343e90fc0b8880d6d11 /mille/print.c | |
| parent | c10b9a8ce82ad7b4b287ccc5b5b576ab961aa488 (diff) | |
| download | bsdgames-darwin-8916e2056e90ba2c157dfd2b98fb48837d565646.tar.gz bsdgames-darwin-8916e2056e90ba2c157dfd2b98fb48837d565646.zip | |
sprinkle static
Diffstat (limited to 'mille/print.c')
| -rw-r--r-- | mille/print.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mille/print.c b/mille/print.c index 7ad7380f..44d79f56 100644 --- a/mille/print.c +++ b/mille/print.c @@ -1,4 +1,4 @@ -/* $NetBSD: print.c,v 1.14 2009/05/25 23:34:50 dholland Exp $ */ +/* $NetBSD: print.c,v 1.15 2009/08/12 08:07:27 dholland Exp $ */ /* * Copyright (c) 1982, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: print.c,v 1.14 2009/05/25 23:34:50 dholland Exp $"); +__RCSID("$NetBSD: print.c,v 1.15 2009/08/12 08:07:27 dholland Exp $"); #endif #endif /* not lint */ @@ -47,6 +47,9 @@ __RCSID("$NetBSD: print.c,v 1.14 2009/05/25 23:34:50 dholland Exp $"); #define COMP_STRT 20 #define CARD_STRT 2 +static void show_card(int, int, CARD, CARD *); +static void show_score(int, int, int, int *); + void prboard(void) { @@ -102,7 +105,7 @@ prboard(void) * show_card: * Show the given card if it is different from the last one shown */ -void +static void show_card(int y, int x, CARD c, CARD *lc) { if (c == *lc) @@ -165,7 +168,7 @@ prscore(for_real) * Show a score value if it is different from the last time we * showed it. */ -void +static void show_score(int y, int x, int s, int *ls) { if (s == *ls) |
