mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +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:
parent
0420736143
commit
7ab37ee22c
Notes:
sideshowbarker
2024-07-17 01:25:15 +09:00
Author: https://github.com/ADKaster
Commit: 7ab37ee22c
Pull-request: https://github.com/SerenityOS/serenity/pull/16896
14 changed files with 35 additions and 18 deletions
|
@ -10,8 +10,11 @@
|
|||
#include <Kernel/API/serenity_limits.h>
|
||||
#include <LibC/elf.h>
|
||||
#include <LibELF/Validation.h>
|
||||
#include <limits.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#ifndef KERNEL
|
||||
# include <limits.h>
|
||||
# include <pthread.h>
|
||||
#endif
|
||||
|
||||
namespace ELF {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue