aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/random.h
diff options
context:
space:
mode:
authorMarvin Borner2021-02-25 20:45:10 +0100
committerMarvin Borner2021-02-25 20:45:10 +0100
commita9710cb73cc9ecadaff241428a39a26935cb5c0a (patch)
tree68f509407bc49a4da43ccadfd9115b9e6f7eb413 /libc/inc/random.h
parent26587adae4f5ec61d03fd7075805a24b29107fe3 (diff)
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'libc/inc/random.h')
-rw-r--r--libc/inc/random.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inc/random.h b/libc/inc/random.h
index 50c849b..59add9b 100644
--- a/libc/inc/random.h
+++ b/libc/inc/random.h
@@ -6,7 +6,7 @@
#include <def.h>
void srand(u32 seed);
-u32 rand();
+u32 rand(void);
char *randstr(u32 size);
#endif