1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

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
2 changed files with 2 additions and 0 deletions

View file

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