summaryrefslogtreecommitdiffstats
path: root/cribbage/cards.c
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>1999-09-30 18:01:31 +0000
committerjsm <jsm@NetBSD.org>1999-09-30 18:01:31 +0000
commit963f40fabfbfc47378585a05f5b465cbd4e0c7b6 (patch)
tree7d2ead721965b1afb7d25682629c2f61932820fc /cribbage/cards.c
parente2f2d09292b8ac5c5390ab1b7e6fa09ab554080f (diff)
downloadbsdgames-darwin-963f40fabfbfc47378585a05f5b465cbd4e0c7b6.tar.gz
bsdgames-darwin-963f40fabfbfc47378585a05f5b465cbd4e0c7b6.tar.zst
bsdgames-darwin-963f40fabfbfc47378585a05f5b465cbd4e0c7b6.zip
Fix uses of namespaces reserved by ISO C or POSIX.1.
Diffstat (limited to 'cribbage/cards.c')
-rw-r--r--cribbage/cards.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cribbage/cards.c b/cribbage/cards.c
index c4d2610f..29eed58c 100644
--- a/cribbage/cards.c
+++ b/cribbage/cards.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cards.c,v 1.5 1999/09/08 21:17:47 jsm Exp $ */
+/* $NetBSD: cards.c,v 1.6 1999/09/30 18:01:32 jsm Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)cards.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: cards.c,v 1.5 1999/09/08 21:17:47 jsm Exp $");
+__RCSID("$NetBSD: cards.c,v 1.6 1999/09/30 18:01:32 jsm Exp $");
#endif
#endif /* not lint */
@@ -101,10 +101,10 @@ eq(a, b)
}
/*
- * isone returns TRUE if a is in the set of cards b
+ * is_one returns TRUE if a is in the set of cards b
*/
int
-isone(a, b, n)
+is_one(a, b, n)
CARD a;
const CARD b[];
int n;