diff options
author | Marvin Borner | 2020-05-07 22:19:13 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 22:19:13 +0200 |
commit | 9b2e28ad7a752c0fe7b60e73ca43c827b45b3ee8 (patch) | |
tree | 5b1b48ccf8324cced9ae9c4139b493cd98789cc2 /src/userspace/programs/sh.c | |
parent | 43184e40b14a5e41383ffb053e7c69c93ff81036 (diff) |
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/userspace/programs/sh.c')
-rw-r--r-- | src/userspace/programs/sh.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/userspace/programs/sh.c b/src/userspace/programs/sh.c index fc6b6d6..f8f93f3 100644 --- a/src/userspace/programs/sh.c +++ b/src/userspace/programs/sh.c @@ -1,10 +1,10 @@ +#include <common.h> +#include <gui.h> +#include <stddef.h> #include <stdint.h> #include <stdio.h> -#include <stddef.h> -#include <common.h> -#include <unistd.h> #include <syscall.h> -#include <gui.h> +#include <unistd.h> void main() { @@ -18,4 +18,4 @@ void main() while (1) { //printf("A"); }; -} +}
\ No newline at end of file |