From 6c1bd545cb40ee35abbc1812a982a08413a8c05f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Fri, 19 May 2023 10:51:25 +0200 Subject: [PATCH] enosys: include sys/syscall.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Otherwise there is no guarantee that all syscall numbers detected by tools/all_syscalls are actually available to enosys.c. Signed-off-by: Thomas Weißschuh --- misc-utils/enosys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/misc-utils/enosys.c b/misc-utils/enosys.c index 1aa673717c..b51fe36872 100644 --- a/misc-utils/enosys.c +++ b/misc-utils/enosys.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "c.h" #include "exitcodes.h" -- 2.47.2