summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdlib/rand.c6
1 files changed, 3 insertions, 3 deletions
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();
}
OpenPOWER on IntegriCloud