From 6c9946f64c70a0b3d7b6e4a99876a37c62f87efd Mon Sep 17 00:00:00 2001 From: ache Date: Thu, 4 Jul 2013 00:02:10 +0000 Subject: After fixing ranges restore POSIX requirement: rand() call without srand() must be the same as srand(1); rand(); (yet one increment) --- lib/libc/stdlib/rand.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/libc/stdlib') diff --git a/lib/libc/stdlib/rand.c b/lib/libc/stdlib/rand.c index 58b3753..270e63f 100644 --- a/lib/libc/stdlib/rand.c +++ b/lib/libc/stdlib/rand.c @@ -99,7 +99,12 @@ rand_r(unsigned int *ctx) } -static u_long next = 1; +static u_long next = +#ifdef USE_WEAK_SEEDING + 1; +#else + 2; +#endif int rand() -- cgit v1.1