aboutsummaryrefslogtreecommitdiff
path: root/src/user/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/init.c')
-rw-r--r--src/user/init.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/user/init.c b/src/user/init.c
index bb60454..1130916 100644
--- a/src/user/init.c
+++ b/src/user/init.c
@@ -1,6 +1,6 @@
-#include "user/syscall.h"
-#include "kern/log.h"
#include "kern/common.h"
+#include "kern/log.h"
+#include "user/syscall.h"
void usermode_start()
{
@@ -8,5 +8,6 @@ void usermode_start()
logs("I'm still in usermode!\n");
logs("I'm super still in usermode!\n");
- for(;;);
+ for (;;)
+ ;
}