summaryrefslogtreecommitdiff
path: root/src/stdlib/rand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/rand.c')
-rw-r--r--src/stdlib/rand.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stdlib/rand.c b/src/stdlib/rand.c
index f1a3e3e1..d8f3fcff 100644
--- a/src/stdlib/rand.c
+++ b/src/stdlib/rand.c
@@ -1,11 +1,10 @@
#include <stdlib.h>
-#include "nonstd/lib.h"
-#include "_rand.h"
+#include "_stdlib.h"
/** get a pseudo-random number **/
int rand(void)
{
- return _rand(*(unsigned*)__libc(RAND));
+ return (int)_rand(__stdlib.rand);
}
/***