diff options
author | dzwdz | 2022-07-26 16:53:13 +0200 |
---|---|---|
committer | dzwdz | 2022-07-26 16:53:13 +0200 |
commit | 13519597d98c9271b7856242d5625896d18803c5 (patch) | |
tree | fc8ac2bb7ae2970bfa81aae9f89ce1e59bb5a2c7 /src/user/app/init/shell.c | |
parent | 90af8825a41981ce2ee52e0a9ce84f624eb022e6 (diff) |
tools: add tools/sort_includes.rb
Diffstat (limited to 'src/user/app/init/shell.c')
-rw-r--r-- | src/user/app/init/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/init/shell.c b/src/user/app/init/shell.c index cda8a65..f420208 100644 --- a/src/user/app/init/shell.c +++ b/src/user/app/init/shell.c @@ -1,9 +1,9 @@ #include <shared/syscalls.h> #include <stdbool.h> #include <user/app/init/shell.h> +#include <user/app/init/tests/main.h> #include <user/lib/elfload.h> #include <user/lib/stdlib.h> -#include <user/app/init/tests/main.h> static bool isspace(char c) { return c == ' ' || c == '\t' || c == '\n'; |