1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

LibELF: Include <pthread.h> to ensure PTHREAD_STACK_MAX is available

Android's bionic C library puts this definition in pthread.h rather than
limits.h
This commit is contained in:
Andrew Kaster 2022-12-18 09:01:22 -07:00 committed by Andreas Kling
parent a9ea0ee9af
commit 61573caf53

View file

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