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/kernel/fs | |
parent | 43184e40b14a5e41383ffb053e7c69c93ff81036 (diff) |
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/fs')
-rw-r--r-- | src/kernel/fs/ata.c | 8 | ||||
-rw-r--r-- | src/kernel/fs/elf.c | 13 | ||||
-rw-r--r-- | src/kernel/fs/ext2.c | 10 | ||||
-rw-r--r-- | src/kernel/fs/ext2.h | 4 | ||||
-rw-r--r-- | src/kernel/fs/fs.c | 4 | ||||
-rw-r--r-- | src/kernel/fs/load.c | 6 |
6 files changed, 23 insertions, 22 deletions
diff --git a/src/kernel/fs/ata.c b/src/kernel/fs/ata.c index c7c7dc1..2e952a1 100644 --- a/src/kernel/fs/ata.c +++ b/src/kernel/fs/ata.c @@ -1,9 +1,9 @@ -#include <stdint.h> -#include <stddef.h> -#include <stdbool.h> #include <fs/ata.h> -#include <system.h> #include <io/io.h> +#include <stdbool.h> +#include <stddef.h> +#include <stdint.h> +#include <system.h> static u16 sel_base_port = 0; static u8 sel_master_or_slave = 0; diff --git a/src/kernel/fs/elf.c b/src/kernel/fs/elf.c index 9a9b105..3d7fcde 100644 --- a/src/kernel/fs/elf.c +++ b/src/kernel/fs/elf.c @@ -1,13 +1,14 @@ -#include <stdint.h> -#include <stddef.h> -#include <system.h> #include <fs/elf.h> +#include <fs/ext2.h> +#include <gdt/gdt.h> +#include <lib/lib.h> #include <lib/stdio.h> +#include <lib/stdlib.h> #include <memory/alloc.h> -#include <lib/lib.h> #include <memory/paging.h> -#include <fs/ext2.h> -#include <gdt/gdt.h> +#include <stddef.h> +#include <stdint.h> +#include <system.h> #include <tasks/process.h> int is_elf(struct elf_header *header) diff --git a/src/kernel/fs/ext2.c b/src/kernel/fs/ext2.c index 78d1dc4..3193f87 100644 --- a/src/kernel/fs/ext2.c +++ b/src/kernel/fs/ext2.c @@ -1,12 +1,12 @@ -#include <stddef.h> -#include <stdint.h> -#include <stdbool.h> #include <fs/ata.h> #include <fs/ext2.h> -#include <system.h> -#include <memory/alloc.h> #include <lib/lib.h> #include <lib/stdlib.h> +#include <memory/alloc.h> +#include <stdbool.h> +#include <stddef.h> +#include <stdint.h> +#include <system.h> static struct ext2_superblock superblock; static struct bgd *bgdt; diff --git a/src/kernel/fs/ext2.h b/src/kernel/fs/ext2.h index e5c26fe..797985a 100644 --- a/src/kernel/fs/ext2.h +++ b/src/kernel/fs/ext2.h @@ -1,9 +1,9 @@ #ifndef MELVIX_EXT2_H #define MELVIX_EXT2_H -#include <stdint.h> -#include <stddef.h> #include <stdbool.h> +#include <stddef.h> +#include <stdint.h> #define ROOT_INODE 2 diff --git a/src/kernel/fs/fs.c b/src/kernel/fs/fs.c index a57a83e..a23b943 100644 --- a/src/kernel/fs/fs.c +++ b/src/kernel/fs/fs.c @@ -1,7 +1,7 @@ -#include <stdint.h> #include <fs/ext2.h> -#include <system.h> #include <memory/alloc.h> +#include <stdint.h> +#include <system.h> u32 get_file_size(char *path) { diff --git a/src/kernel/fs/load.c b/src/kernel/fs/load.c index 0170f26..0e93273 100644 --- a/src/kernel/fs/load.c +++ b/src/kernel/fs/load.c @@ -1,8 +1,8 @@ +#include <fs/ext2.h> #include <fs/load.h> -#include <system.h> -#include <lib/stdio.h> #include <lib/lib.h> -#include <fs/ext2.h> +#include <lib/stdio.h> +#include <system.h> void load_binaries() { |