From 6a8fcbc4a6172c831c89c507007f59fba13408aa Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Mon, 24 Feb 2025 22:07:25 +0000 Subject: executor: pull in errno.h on BSD systems The error handling for the setsid() call in sandbox_common() requires it. Without it, some csource builds fail. --- executor/common_bsd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'executor/common_bsd.h') diff --git a/executor/common_bsd.h b/executor/common_bsd.h index 7d387be16..1e0389af5 100644 --- a/executor/common_bsd.h +++ b/executor/common_bsd.h @@ -387,6 +387,7 @@ static long syz_extract_tcp_res(volatile long a0, volatile long a1, volatile lon #if SYZ_EXECUTOR || SYZ_SANDBOX_SETUID || SYZ_SANDBOX_NONE +#include #include #include -- cgit mrf-deployment