From a9710cb73cc9ecadaff241428a39a26935cb5c0a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 25 Feb 2021 20:45:10 +0100 Subject: Applied even more warning flags! Fixing all the warnings wasn't that easy actually.. --- libc/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/random.c') diff --git a/libc/random.c b/libc/random.c index a2a8273..8c8076f 100644 --- a/libc/random.c +++ b/libc/random.c @@ -11,7 +11,7 @@ void srand(u32 seed) g_seed = seed; } -u32 rand() +u32 rand(void) { g_seed = g_seed * 1103515245 + 12345; return (g_seed >> 16) & 0x7FFF; -- cgit v1.2.3