diff options
Diffstat (limited to 'src/stdlib/rand.c')
-rw-r--r-- | src/stdlib/rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/rand.c b/src/stdlib/rand.c index a68dc046..00670dd5 100644 --- a/src/stdlib/rand.c +++ b/src/stdlib/rand.c @@ -5,7 +5,7 @@ int rand(void) { SIGNAL_SAFE(0); - return (int)_rand(__stdlib.rand); + return (int)_rand(__stdlib_h.rand); } /*** |