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
commit 61573caf53
Notes: sideshowbarker 2024-07-17 08:36:27 +09:00

View file

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