summaryrefslogtreecommitdiff
path: root/games/cribbage/deck.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-11-29 06:42:21 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-11-29 06:42:21 +0000
commit5088359990d1a2115627a75174eeaf8b0ee62c9d (patch)
tree5fe74413fd4f7ace5b84115db77ac3fc1c490b38 /games/cribbage/deck.h
parentec3f18f89c9276f3b7970964d1b354cc80e66a93 (diff)
Kill BOOLEAN, just use the curses/c++ bool type instead.
Diffstat (limited to 'games/cribbage/deck.h')
-rw-r--r--games/cribbage/deck.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/games/cribbage/deck.h b/games/cribbage/deck.h
index 796175e0ddb..d03eb1fa7fe 100644
--- a/games/cribbage/deck.h
+++ b/games/cribbage/deck.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: deck.h,v 1.2 1999/11/29 06:42:20 millert Exp $ */
/* $NetBSD: deck.h,v 1.3 1995/03/21 15:08:49 cgd Exp $ */
/*
@@ -82,6 +83,3 @@ typedef struct {
int rank;
int suit;
} CARD;
-
-typedef char BOOLEAN;
-