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/multiboot.c | |
parent | 43184e40b14a5e41383ffb053e7c69c93ff81036 (diff) |
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/multiboot.c')
-rw-r--r-- | src/kernel/multiboot.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/multiboot.c b/src/kernel/multiboot.c index 04db300..af1a88b 100644 --- a/src/kernel/multiboot.c +++ b/src/kernel/multiboot.c @@ -1,11 +1,11 @@ -#include <stdint.h> -#include <graphics/vesa.h> -#include <system.h> -#include <multiboot.h> -#include <smbios/smbios.h> #include <acpi/acpi.h> +#include <graphics/vesa.h> #include <lib/lib.h> #include <lib/stdio.h> +#include <multiboot.h> +#include <smbios/smbios.h> +#include <stdint.h> +#include <system.h> void multiboot_parse(u32 multiboot_address) { |