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/ext2.c | |
parent | 43184e40b14a5e41383ffb053e7c69c93ff81036 (diff) |
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/fs/ext2.c')
-rw-r--r-- | src/kernel/fs/ext2.c | 10 |
1 files changed, 5 insertions, 5 deletions
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; |