diff kernel/kernel.c3 @ 293:6aa721e7b10b

Try to improve build sequence
author Windel Bouwman
date Thu, 28 Nov 2013 20:39:37 +0100
parents 534b94b40aa8
children 917eab04b8b7
line wrap: on
line diff
--- a/kernel/kernel.c3	Wed Nov 27 08:06:42 2013 +0100
+++ b/kernel/kernel.c3	Thu Nov 28 20:39:37 2013 +0100
@@ -6,7 +6,7 @@
 import arch;
 
 // Main entry point of the kernel:
-func start()
+function void start()
 {
     process.Init();
     memory.Init();
@@ -18,7 +18,7 @@
 }
 
 
-func panic()
+function void panic()
 {
     arch.halt();
 }