From 6390e770b812f3df9943b72dff360a36cfd20cba Mon Sep 17 00:00:00 2001 From: perry Date: Thu, 3 Feb 2005 02:23:02 +0000 Subject: A preprocessor macro named "srand" was defined which seeded the random number generator. Unfortunately, it conflicted with a function of the same defined in stdlib.h. This was masked by the __P hack, which is now being purged. I've renamed "srand" to "seedrand" to eliminate the conflict. --- larn/io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'larn/io.c') diff --git a/larn/io.c b/larn/io.c index f60711e2..3f2d34b4 100644 --- a/larn/io.c +++ b/larn/io.c @@ -1,4 +1,4 @@ -/* $NetBSD: io.c,v 1.14 2002/05/26 00:12:13 wiz Exp $ */ +/* $NetBSD: io.c,v 1.15 2005/02/03 02:23:02 perry Exp $ */ /* * io.c Larn is copyrighted 1986 by Noah Morgan. @@ -62,7 +62,7 @@ */ #include #ifndef lint -__RCSID("$NetBSD: io.c,v 1.14 2002/05/26 00:12:13 wiz Exp $"); +__RCSID("$NetBSD: io.c,v 1.15 2005/02/03 02:23:02 perry Exp $"); #endif /* not lint */ #include "header.h" @@ -209,7 +209,7 @@ newgame() long *p, *pe; for (p = c, pe = c + 100; p < pe; *p++ = 0); time(&initialtime); - srand(initialtime); + seedrand(initialtime); lcreat((char *) 0); /* open buffering for output to terminal */ } -- cgit v1.2.3