diff options
Diffstat (limited to 'backgammon/common_source/odds.c')
| -rw-r--r-- | backgammon/common_source/odds.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/backgammon/common_source/odds.c b/backgammon/common_source/odds.c index 509d5f49..0d875848 100644 --- a/backgammon/common_source/odds.c +++ b/backgammon/common_source/odds.c @@ -1,4 +1,4 @@ -/* $NetBSD: odds.c,v 1.5 2003/08/07 09:36:57 agc Exp $ */ +/* $NetBSD: odds.c,v 1.6 2005/07/01 01:12:39 jmc Exp $ */ /* * Copyright (c) 1980, 1993 @@ -34,15 +34,14 @@ #if 0 static char sccsid[] = "@(#)odds.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: odds.c,v 1.5 2003/08/07 09:36:57 agc Exp $"); +__RCSID("$NetBSD: odds.c,v 1.6 2005/07/01 01:12:39 jmc Exp $"); #endif #endif /* not lint */ #include "back.h" void -odds(r1, r2, val) - int r1, r2, val; +odds(int r1, int r2, int val) { int i, j; @@ -66,7 +65,7 @@ odds(r1, r2, val) } int -count() +count(void) { int i; int j; @@ -80,8 +79,7 @@ count() } int -canhit(i, c) - int i, c; +canhit(int i, int c) { int j, k, b; int a, diff, place, addon, menstuck; |
