diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2003-05-12 08:51:05 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2003-05-12 08:51:05 +0000 |
commit | d6e65d051ef8176c5b7fa2f91386b77683330ce8 (patch) | |
tree | 1bc86f4a8904f148ff809cabfcce298771a44274 /games/cribbage/crib.c | |
parent | 9baef19e386e3bb88601d2896b246af5a436d66d (diff) |
From NetBSD: remove redundant declaration
Diffstat (limited to 'games/cribbage/crib.c')
-rw-r--r-- | games/cribbage/crib.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/games/cribbage/crib.c b/games/cribbage/crib.c index a8a2de06381..b11342b38f5 100644 --- a/games/cribbage/crib.c +++ b/games/cribbage/crib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crib.c,v 1.10 2002/05/31 05:11:37 pjanzen Exp $ */ +/* $OpenBSD: crib.c,v 1.11 2003/05/12 08:51:04 pjanzen Exp $ */ /* $NetBSD: crib.c,v 1.7 1997/07/10 06:47:29 mikel Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)crib.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: crib.c,v 1.10 2002/05/31 05:11:37 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: crib.c,v 1.11 2003/05/12 08:51:04 pjanzen Exp $"; #endif #endif /* not lint */ @@ -193,8 +193,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); |