pintheft: add missing <sys/mman.h> for mmap/mprotect/PROT_*

v0.9.0 release builds all 4 failed because pintheft module used mmap/
mprotect/PROT_READ/MAP_PRIVATE without including sys/mman.h. Worked on
the dev host because some indirect include pulled it in; CI's stricter
glibc/musl headers don't.
This commit is contained in:
2026-05-23 22:19:59 -04:00
parent d84b3b0033
commit f41eed834e
@@ -70,6 +70,7 @@
#include <sys/wait.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/mman.h> /* mmap, mprotect, munmap, PROT_*, MAP_* */
#ifdef __linux__
#include <sys/syscall.h>