summaryrefslogtreecommitdiff
path: root/src/stdlib/srand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/srand.c')
-rw-r--r--src/stdlib/srand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/srand.c b/src/stdlib/srand.c
index 0870de9b..31f37a48 100644
--- a/src/stdlib/srand.c
+++ b/src/stdlib/srand.c
@@ -6,7 +6,7 @@ void srand(unsigned int seed)
{
SIGNAL_SAFE(0);
- __stdlib.rand = seed;
+ __stdlib_h.rand = seed;
}
/***