diff options
author | Andrew Kaster <akaster@serenityos.org> | 2023-01-07 13:57:33 -0700 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-21 10:43:59 -0700 |
commit | 7ab37ee22cb85820ec73f0677f06125c466feeff (patch) | |
tree | 2c379f4e95a9b48dfb20a4d615b39d583bd96149 /AK/FuzzyMatch.cpp | |
parent | 0420736143067c16339a08ced1ff16da36e4e163 (diff) | |
download | serenity-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.cpp | 1 |
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 { |