From 601bb3d3753959d6074c7dbdc1c5838e35dd4faf Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 5 Feb 2003 21:25:50 +0000 Subject: Since we drop NSHUFF values now, set default seed to what it becomes after srand(1) --- lib/libc/stdlib/rand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/stdlib/rand.c b/lib/libc/stdlib/rand.c index dcc445f..7791218 100644 --- a/lib/libc/stdlib/rand.c +++ b/lib/libc/stdlib/rand.c @@ -98,12 +98,12 @@ rand_r(unsigned int *ctx) } -static u_long next = 1; +static u_long next = 892053144; /* after srand(1), NSHUFF counted */ int rand() { - return do_rand(&next); + return (do_rand(&next)); } void @@ -114,7 +114,7 @@ u_int seed; next = seed; for (i = 0; i < NSHUFF; i++) - (void)do_rand(&next); + (void)rand(); } -- cgit v1.1