]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - monop/roll.c
Fix merge conflicts
[bsdgames-darwin.git] / monop / roll.c
index 43f42fc1479eda139d73851aa50c3a4f1bf6b752..373fc73311293511ee69d16eb90e384fe768f5e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: roll.c,v 1.12 2008/02/24 02:58:33 dholland Exp $       */
+/*     $NetBSD: roll.c,v 1.14 2012/06/19 05:35:32 dholland Exp $       */
 
 /*
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)roll.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: roll.c,v 1.12 2008/02/24 02:58:33 dholland Exp $");
+__RCSID("$NetBSD: roll.c,v 1.14 2012/06/19 05:35:32 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -47,13 +47,12 @@ __RCSID("$NetBSD: roll.c,v 1.12 2008/02/24 02:58:33 dholland Exp $");
  */
 
 int
-roll(ndie, nsides)
-       int ndie, nsides;
+roll(int ndie, int nsides)
 {
-       int tot;
+       long tot;
 
        tot = 0;
        while (ndie--)
                tot += (random() % nsides) + 1;
-       return tot;
+       return (int)tot;
 }