From be78a5c7937a31128a3624dcace9df23492866f9 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 29 Nov 2013 22:54:20 +0100 Subject: Declare void argument lists --- kern/startup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kern/startup.c') diff --git a/kern/startup.c b/kern/startup.c index 78c210d2..81874e73 100644 --- a/kern/startup.c +++ b/kern/startup.c @@ -86,7 +86,7 @@ extern char *kernel_cmdline; * * Assumes that master_cpu is set. */ -void setup_main() +void setup_main(void) { thread_t startup_thread; @@ -198,7 +198,7 @@ void setup_main() * Now running in a thread. Create the rest of the kernel threads * and the bootstrap task. */ -void start_kernel_threads() +void start_kernel_threads(void) { int i; @@ -266,7 +266,7 @@ void start_kernel_threads() } #if NCPUS > 1 -void slave_main() +void slave_main(void) { cpu_launch_first_thread(THREAD_NULL); } -- cgit v1.2.3