summaryrefslogtreecommitdiffstats
path: root/cribbage/extern.c
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2002-12-06 01:48:24 +0000
committerthorpej <thorpej@NetBSD.org>2002-12-06 01:48:24 +0000
commitdea17044cc7c872686fc5ac96e59e518340e7f67 (patch)
treeb8e873e7ad94d4dabcacafaac53a8a65d4122bb3 /cribbage/extern.c
parenta8bfdad49d7620b77f20ab86a8e20ac0229e392e (diff)
downloadbsdgames-darwin-dea17044cc7c872686fc5ac96e59e518340e7f67.tar.gz
bsdgames-darwin-dea17044cc7c872686fc5ac96e59e518340e7f67.tar.zst
bsdgames-darwin-dea17044cc7c872686fc5ac96e59e518340e7f67.zip
Avoid confict with reserved identifier "expl".
Diffstat (limited to 'cribbage/extern.c')
-rw-r--r--cribbage/extern.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cribbage/extern.c b/cribbage/extern.c
index c4c9fc32..12e23bae 100644
--- a/cribbage/extern.c
+++ b/cribbage/extern.c
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.c,v 1.5 1999/09/19 18:12:09 jsm Exp $ */
+/* $NetBSD: extern.c,v 1.6 2002/12/06 01:48:24 thorpej Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: extern.c,v 1.5 1999/09/19 18:12:09 jsm Exp $");
+__RCSID("$NetBSD: extern.c,v 1.6 2002/12/06 01:48:24 thorpej Exp $");
#endif
#endif /* not lint */
@@ -52,7 +52,7 @@ BOOLEAN iwon = FALSE; /* if comp won last game */
BOOLEAN quiet = FALSE; /* if suppress random mess */
BOOLEAN rflag = FALSE; /* if all cuts random */
-char expl[128]; /* explanation */
+char explan[128]; /* explanation */
int cgames = 0; /* number games comp won */
int cscore = 0; /* comp score in this game */