diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-23 00:45:09 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-23 00:45:09 +0000 |
commit | c4cff5680ce6804d543064564aa6f74366bb387b (patch) | |
tree | bffc24462ceb297681aae1e658d98105ba4bc7c3 /games | |
parent | 1ae94fc32d93b3096ab569df756fa01c7ce6d8b6 (diff) |
playing is a var in main() not a global, remove extern
Diffstat (limited to 'games')
-rw-r--r-- | games/cribbage/cribbage.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/cribbage/cribbage.h b/games/cribbage/cribbage.h index fad3be1fa98..608242fc05a 100644 --- a/games/cribbage/cribbage.h +++ b/games/cribbage/cribbage.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cribbage.h,v 1.12 2015/12/31 18:10:19 mestre Exp $ */ +/* $OpenBSD: cribbage.h,v 1.13 2024/05/23 00:45:08 jsg Exp $ */ /* $NetBSD: cribbage.h,v 1.3 1995/03/21 15:08:46 cgd Exp $ */ /* @@ -60,7 +60,6 @@ extern bool explain; /* player mistakes explained */ extern bool muggins; /* player mistakes exploited */ extern bool rflag; /* if all cuts random */ extern bool quiet; /* if suppress random mess */ -extern bool playing; /* currently playing game */ extern char expl_string[128]; /* string for explanation */ |