From bedee03427655ad7b76b7c4db988ebd67702da4f Mon Sep 17 00:00:00 2001 From: Eirik Nygaard Date: Wed, 2 Mar 2005 16:14:03 +0000 Subject: [PATCH] Be consistent in the use of BOOLEAN. --- games/cribbage/extern.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/games/cribbage/extern.c b/games/cribbage/extern.c index dcfa9455d0..681ff92e2c 100644 --- a/games/cribbage/extern.c +++ b/games/cribbage/extern.c @@ -32,7 +32,7 @@ * * @(#)extern.c 8.1 (Berkeley) 5/31/93 * $FreeBSD: src/games/cribbage/extern.c,v 1.2 1999/11/30 03:48:45 billf Exp $ - * $DragonFly: src/games/cribbage/extern.c,v 1.2 2003/06/17 04:25:23 dillon Exp $ + * $DragonFly: src/games/cribbage/extern.c,v 1.3 2005/03/02 16:14:03 eirikn Exp $ */ #include @@ -40,10 +40,10 @@ #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 */ -- 2.41.0