LibJS/JIT: Add missing unistd.h include (fixes Clang build)

This commit is contained in:
Andreas Kling 2023-10-17 07:57:45 +02:00
commit a7bad26b63
Notes: sideshowbarker 2024-07-18 08:59:31 +09:00

View file

@ -9,6 +9,7 @@
#include <LibJS/JIT/Compiler.h>
#include <LibJS/Runtime/ValueInlines.h>
#include <sys/mman.h>
#include <unistd.h>
namespace JS::JIT {