summaryrefslogtreecommitdiffstats
path: root/cribbage/crib.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2001-02-05 00:28:30 +0000
committerchristos <christos@NetBSD.org>2001-02-05 00:28:30 +0000
commitc88c8e5b3cb0a20c66e772a7641610f7c1b2ed20 (patch)
tree40c0084c8f3c9d9349958d44ca1a3fffe659b343 /cribbage/crib.c
parentd53bd20bd5d0f4e990615bc47d9c57a2b5c8ee4e (diff)
downloadbsdgames-darwin-c88c8e5b3cb0a20c66e772a7641610f7c1b2ed20.tar.gz
bsdgames-darwin-c88c8e5b3cb0a20c66e772a7641610f7c1b2ed20.tar.zst
bsdgames-darwin-c88c8e5b3cb0a20c66e772a7641610f7c1b2ed20.zip
remove redundant decl
Diffstat (limited to 'cribbage/crib.c')
-rw-r--r--cribbage/crib.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/cribbage/crib.c b/cribbage/crib.c
index 33a9b4a3..e2b64303 100644
--- a/cribbage/crib.c
+++ b/cribbage/crib.c
@@ -1,4 +1,4 @@
-/* $NetBSD: crib.c,v 1.13 2000/05/08 07:56:03 mycroft Exp $ */
+/* $NetBSD: crib.c,v 1.14 2001/02/05 00:28:30 christos Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)crib.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: crib.c,v 1.13 2000/05/08 07:56:03 mycroft Exp $");
+__RCSID("$NetBSD: crib.c,v 1.14 2001/02/05 00:28:30 christos Exp $");
#endif
#endif /* not lint */
@@ -196,8 +196,6 @@ makeboard()
void
gamescore()
{
- extern int Lastscore[];
-
if (pgames || cgames) {
mvprintw(SCORE_Y + 1, SCORE_X + 28, "Games: %3d", pgames);
mvprintw(SCORE_Y + 7, SCORE_X + 28, "Games: %3d", cgames);