1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:04:57 +00:00

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.
This commit is contained in:
Andrew Kaster 2023-01-07 13:57:33 -07:00 committed by Andrew Kaster
parent 0420736143
commit 7ab37ee22c
14 changed files with 35 additions and 18 deletions

View file

@ -14,9 +14,12 @@
#include <AK/StringView.h>
#include <AK/Vector.h>
#ifndef KERNEL
#ifdef KERNEL
# include <Kernel/StdLib.h>
#else
# include <AK/DeprecatedString.h>
# include <AK/FloatingPointStringConversions.h>
# include <string.h>
#endif
namespace AK {