1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:28:11 +00:00

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
parent c21978ead6
commit a7bad26b63

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 {