From bd35ad093888ab3ff7c529269fe39e0017174a50 Mon Sep 17 00:00:00 2001 From: dholland Date: Sat, 22 Mar 2014 23:33:33 +0000 Subject: Use random(), not rand(). --- battlestar/extern.h | 4 ++-- battlestar/init.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'battlestar') 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) { -- cgit v1.2.3-56-ge451