LibELF: Fix missing include

A few files are expecting that someone brings PAGE_SIZE from possibly
the Kernel with them
This commit is contained in:
Hendiadyoin1 2021-06-23 22:54:41 +02:00 committed by Andreas Kling
parent 5c4890411b
commit 37253ebcae
Notes: sideshowbarker 2024-07-18 11:36:40 +09:00
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@
#include <AK/StringView.h>
#include <LibELF/Image.h>
#include <LibELF/Validation.h>
#include <limits.h>
namespace ELF {

View file

@ -10,6 +10,7 @@
#include <AK/String.h>
#include <LibC/elf.h>
#include <LibELF/Validation.h>
#include <limits.h>
namespace ELF {