diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-06 14:29:29 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-06 14:29:29 +0200 |
commit | a58d7fd8bb040c16929330e93ea1491cf9649642 (patch) | |
tree | a6697da6a46b5ab1e4124b04203d628e1ce4a8f2 /Kernel/init.cpp | |
parent | 6306cf5c27c8f24067845be842719f55b5152f5d (diff) | |
download | serenity-a58d7fd8bb040c16929330e93ea1491cf9649642.zip |
Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r-- | Kernel/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 831c6bc5a3..965c6efe0f 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -1,4 +1,4 @@ -#include "types.h" +#include <AK/Types.h> #include "kmalloc.h" #include "i386.h" #include "i8253.h" |