1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:58:12 +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

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