summaryrefslogtreecommitdiffstats
path: root/mille/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'mille/print.c')
-rw-r--r--mille/print.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/mille/print.c b/mille/print.c
index 5c2427c6..c9ac4f95 100644
--- a/mille/print.c
+++ b/mille/print.c
@@ -1,4 +1,4 @@
-/* $NetBSD: print.c,v 1.4 1995/03/24 05:02:02 cgd Exp $ */
+/* $NetBSD: print.c,v 1.5 1997/05/23 23:09:42 jtc Exp $ */
/*
* Copyright (c) 1982, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: print.c,v 1.4 1995/03/24 05:02:02 cgd Exp $";
+static char rcsid[] = "$NetBSD: print.c,v 1.5 1997/05/23 23:09:42 jtc Exp $";
#endif
#endif /* not lint */
@@ -52,8 +52,8 @@ static char rcsid[] = "$NetBSD: print.c,v 1.4 1995/03/24 05:02:02 cgd Exp $";
prboard() {
- reg PLAY *pp;
- reg int i, j, k, temp;
+ register PLAY *pp;
+ register int i, j, k, temp;
for (k = 0; k < 2; k++) {
pp = &Player[k];
@@ -68,8 +68,8 @@ prboard() {
show_card(14, temp, pp->battle, &pp->sh_battle);
show_card(16, temp, pp->speed, &pp->sh_speed);
for (i = C_25; i <= C_200; i++) {
- reg char *name;
- reg int end;
+ register char *name;
+ register int end;
if (pp->nummiles[i] == pp->sh_nummiles[i])
continue;
@@ -118,10 +118,11 @@ register CARD c, *lc;
static char Score_fmt[] = "%4d";
prscore(for_real)
-reg bool for_real; {
+register bool for_real;
+{
- reg PLAY *pp;
- reg int x;
+ register PLAY *pp;
+ register int x;
stdscr = Score;
for (pp = Player; pp < &Player[2]; pp++) {