diff options
Diffstat (limited to 'libc/stdlib/rand.c')
-rw-r--r-- | libc/stdlib/rand.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/stdlib/rand.c b/libc/stdlib/rand.c index 61aaa9105..93fc01483 100644 --- a/libc/stdlib/rand.c +++ b/libc/stdlib/rand.c @@ -9,8 +9,7 @@ /* libc_hidden_proto(random) */ -int rand (void) +int rand(void) { - return((int)random()); + return (int)random(); } - |