summaryrefslogtreecommitdiff
path: root/Kernel/kmalloc.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-06 14:29:29 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-06 14:29:29 +0200
commita58d7fd8bb040c16929330e93ea1491cf9649642 (patch)
treea6697da6a46b5ab1e4124b04203d628e1ce4a8f2 /Kernel/kmalloc.cpp
parent6306cf5c27c8f24067845be842719f55b5152f5d (diff)
downloadserenity-a58d7fd8bb040c16929330e93ea1491cf9649642.zip
Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress.
Diffstat (limited to 'Kernel/kmalloc.cpp')
-rw-r--r--Kernel/kmalloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/kmalloc.cpp b/Kernel/kmalloc.cpp
index 81bdd46737..e52d80c607 100644
--- a/Kernel/kmalloc.cpp
+++ b/Kernel/kmalloc.cpp
@@ -3,7 +3,7 @@
* just to get going. Don't ever let anyone see this shit. :^)
*/
-#include <Kernel/types.h>
+#include <AK/Types.h>
#include <Kernel/kmalloc.h>
#include <Kernel/StdLib.h>
#include <Kernel/i386.h>