aboutsummaryrefslogtreecommitdiff
path: root/src/user/init.c
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2021-10-26 01:55:33 -0600
committerJosh Rahm <joshuarahm@gmail.com>2021-10-26 01:55:33 -0600
commit2c94d5baaec9e65550df942cf976db48bd36d9b5 (patch)
tree6eb68deb9ab93d53539ef3cab283991140ddf0e6 /src/user/init.c
parent969c054e5b1aee7fb034667f09240216ea0c6abf (diff)
downloadstm32l4-2c94d5baaec9e65550df942cf976db48bd36d9b5.tar.gz
stm32l4-2c94d5baaec9e65550df942cf976db48bd36d9b5.tar.bz2
stm32l4-2c94d5baaec9e65550df942cf976db48bd36d9b5.zip
run clang-format.
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 (;;)
+ ;
}