From 48ae94eb474602bb0170f03e0c026555ef637a49 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Mon, 21 Mar 2022 12:51:22 +0100 Subject: [PATCH] Pull in stddef.h in seccomp.h. offsetof() on Linux is defined in it. --- include/kore/seccomp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/kore/seccomp.h b/include/kore/seccomp.h index 800bff7..3b1b506 100644 --- a/include/kore/seccomp.h +++ b/include/kore/seccomp.h @@ -23,6 +23,8 @@ #include #include +#include + #if __BYTE_ORDER == __LITTLE_ENDIAN #define ARGS_LO_OFFSET 0 #define ARGS_HI_OFFSET sizeof(u_int32_t)