summaryrefslogtreecommitdiff
path: root/Kernel/StdLib.cpp
diff options
context:
space:
mode:
authorJames Mintram <me@jamesrm.com>2021-10-14 22:53:48 +0100
committerLinus Groh <mail@linusgroh.de>2021-10-15 21:48:45 +0100
commit0fbeac6011731d16069aed80fe6602992282cfe6 (patch)
tree6195c803da3af1f1f152ecc12ffff0a740e47a7b /Kernel/StdLib.cpp
parentf4fb6379145e5dfa6e008e936f7f2763199e6b5a (diff)
downloadserenity-0fbeac6011731d16069aed80fe6602992282cfe6.zip
Kernel: Split SmapDisabler so header is platform independent
A new header file has been created in the Arch/ folder while the implementation has been moved into a CPP living in the X86 folder.
Diffstat (limited to 'Kernel/StdLib.cpp')
-rw-r--r--Kernel/StdLib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/StdLib.cpp b/Kernel/StdLib.cpp
index edfe4bfc5a..aebd148070 100644
--- a/Kernel/StdLib.cpp
+++ b/Kernel/StdLib.cpp
@@ -8,7 +8,7 @@
#include <AK/MemMem.h>
#include <AK/String.h>
#include <AK/Types.h>
-#include <Kernel/Arch/x86/SmapDisabler.h>
+#include <Kernel/Arch/SmapDisabler.h>
#include <Kernel/Heap/kmalloc.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/StdLib.h>