summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordownsj <downsj@openbsd.org>1999-11-29 01:25:58 +0000
committerdownsj <downsj@openbsd.org>1999-11-29 01:25:58 +0000
commit03364e86cc6568e00c5eb59a6a7bc886de71799f (patch)
tree8c16ddc2b5a46932f8193705d4d9258375bd96f7
parentAdd recognition support for powerbook, it is reported to work with (diff)
downloadwireguard-openbsd-03364e86cc6568e00c5eb59a6a7bc886de71799f.tar.xz
wireguard-openbsd-03364e86cc6568e00c5eb59a6a7bc886de71799f.zip
Make this actually compile; doesn't anyone do a test build after making
changes anymore?
-rw-r--r--games/cribbage/extern.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/games/cribbage/extern.c b/games/cribbage/extern.c
index 1b7c4125566..8d7be990c1e 100644
--- a/games/cribbage/extern.c
+++ b/games/cribbage/extern.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: extern.c,v 1.2 1999/11/29 01:25:58 downsj Exp $ */
/* $NetBSD: extern.c,v 1.3 1995/03/21 15:08:50 cgd Exp $ */
/*-
@@ -46,10 +47,10 @@ static char rcsid[] = "$NetBSD: extern.c,v 1.3 1995/03/21 15:08:50 cgd Exp $";
#include "deck.h"
#include "cribbage.h"
-bool explain = FALSE; /* player mistakes explained */
-bool iwon = FALSE; /* if comp won last game */
-bool quiet = FALSE; /* if suppress random mess */
-bool rflag = FALSE; /* if all cuts random */
+BOOLEAN explain = FALSE; /* player mistakes explained */
+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 */