summaryrefslogtreecommitdiff
path: root/AK/FuzzyMatch.cpp
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2023-01-07 13:57:33 -0700
committerAndrew Kaster <andrewdkaster@gmail.com>2023-01-21 10:43:59 -0700
commit7ab37ee22cb85820ec73f0677f06125c466feeff (patch)
tree2c379f4e95a9b48dfb20a4d615b39d583bd96149 /AK/FuzzyMatch.cpp
parent0420736143067c16339a08ced1ff16da36e4e163 (diff)
downloadserenity-7ab37ee22cb85820ec73f0677f06125c466feeff.zip
Everywhere: Remove string.h include from AK/Traits.h and resolve fallout
A lot of places were relying on AK/Traits.h to give it strnlen, memcmp, memcpy and other related declarations. In the quest to remove inclusion of LibC headers from Kernel files, deal with all the fallout of this included-everywhere header including less things.
Diffstat (limited to 'AK/FuzzyMatch.cpp')
-rw-r--r--AK/FuzzyMatch.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/FuzzyMatch.cpp b/AK/FuzzyMatch.cpp
index 8a1e313895..f82db25af5 100644
--- a/AK/FuzzyMatch.cpp
+++ b/AK/FuzzyMatch.cpp
@@ -6,6 +6,7 @@
#include <AK/CharacterTypes.h>
#include <AK/FuzzyMatch.h>
+#include <string.h>
namespace AK {