summaryrefslogtreecommitdiffstats
path: root/battlestar
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-22 23:33:33 +0000
committerdholland <dholland@NetBSD.org>2014-03-22 23:33:33 +0000
commitbd35ad093888ab3ff7c529269fe39e0017174a50 (patch)
treec23498f08d92bfa07dbfdd5eaf2d735fba18aae7 /battlestar
parent82159d673f616b12554c28d5ac54f515fec21e91 (diff)
downloadbsdgames-darwin-bd35ad093888ab3ff7c529269fe39e0017174a50.tar.gz
bsdgames-darwin-bd35ad093888ab3ff7c529269fe39e0017174a50.tar.zst
bsdgames-darwin-bd35ad093888ab3ff7c529269fe39e0017174a50.zip
Use random(), not rand().
Diffstat (limited to 'battlestar')
-rw-r--r--battlestar/extern.h4
-rw-r--r--battlestar/init.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/battlestar/extern.h b/battlestar/extern.h
index 51b407e9..ce9a3127 100644
--- a/battlestar/extern.h
+++ b/battlestar/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.35 2014/03/22 23:23:55 dholland Exp $ */
+/* $NetBSD: extern.h,v 1.36 2014/03/22 23:33:33 dholland Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -45,7 +45,7 @@
#define BITS (CHAR_BIT * sizeof (unsigned int))
#define OUTSIDE (position > 68 && position < 246 && position != 218)
-#define rnd(x) (rand() % (x))
+#define rnd(x) (random() % (x))
#define max(a,b) ((a) < (b) ? (b) : (a))
#define testbit(array, index) (array[index/BITS] & (1U << (index % BITS)))
#define setbit(array, index) (array[index/BITS] |= (1U << (index % BITS)))
diff --git a/battlestar/init.c b/battlestar/init.c
index 93cbb2ff..1dd0e04e 100644
--- a/battlestar/init.c
+++ b/battlestar/init.c
@@ -1,4 +1,4 @@
-/* $NetBSD: init.c,v 1.15 2005/07/01 06:04:54 jmc Exp $ */
+/* $NetBSD: init.c,v 1.16 2014/03/22 23:33:33 dholland Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)init.c 8.4 (Berkeley) 4/30/95";
#else
-__RCSID("$NetBSD: init.c,v 1.15 2005/07/01 06:04:54 jmc Exp $");
+__RCSID("$NetBSD: init.c,v 1.16 2014/03/22 23:33:33 dholland Exp $");
#endif
#endif /* not lint */
@@ -54,7 +54,7 @@ initialize(const char *filename)
puts("First Adventure game written by His Lordship, the honorable");
puts("Admiral D.W. Riggle\n");
location = dayfile;
- srand(getpid());
+ srandom(time(NULL));
username = getutmp();
wordinit();
if (filename == NULL) {