]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - mille/print.c
Time warp forward 34 years so that it compiles (but not work)
[bsdgames-darwin.git] / mille / print.c
index 7ad7380fceffcff1b4e36186ee2d3837b6626cdf..d711be543308f6b5786f4308720a7cbe10155d50 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: print.c,v 1.14 2009/05/25 23:34:50 dholland Exp $      */
+/*     $NetBSD: print.c,v 1.18 2011/08/21 08:50:08 christos 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.18 2011/08/21 08:50:08 christos 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)
@@ -112,15 +115,10 @@ show_card(int y, int x, CARD c, CARD *lc)
        *lc = c;
 }
 
-static char    Score_fmt[] = "%4d";
+static const char Score_fmt[] = "%4d";
 
 void
-prscore(for_real)
-#ifdef EXTRAP
-       bool    for_real;
-#else
-       bool    for_real __unused;
-#endif
+prscore(bool for_real)
 {
        PLAY    *pp;
        int     x;
@@ -165,7 +163,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)