diff options
author | Hendiadyoin1 <leon2002.la@gmail.com> | 2021-06-22 17:40:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-24 00:38:23 +0200 |
commit | 62f9377656a18bcca1b1616f43dc3ba85dedd8c0 (patch) | |
tree | c7026c4d994088e332d8c1021481336f51ebbf35 /Kernel/CommandLine.cpp | |
parent | 925be2758ec5d2bce226a5284dd8960b7bd3f09a (diff) | |
download | serenity-62f9377656a18bcca1b1616f43dc3ba85dedd8c0.zip |
Kernel: Move special sections into Sections.h
This also removes a lot of CPU.h includes infavor for Sections.h
Diffstat (limited to 'Kernel/CommandLine.cpp')
-rw-r--r-- | Kernel/CommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CommandLine.cpp b/Kernel/CommandLine.cpp index 3d10641e2f..18ac77c149 100644 --- a/Kernel/CommandLine.cpp +++ b/Kernel/CommandLine.cpp @@ -5,9 +5,9 @@ */ #include <AK/StringBuilder.h> -#include <Kernel/Arch/x86/CPU.h> #include <Kernel/CommandLine.h> #include <Kernel/Panic.h> +#include <Kernel/Sections.h> #include <Kernel/StdLib.h> namespace Kernel { |