From: Thomas Weißschuh Date: Fri, 19 May 2023 08:51:25 +0000 (+0200) Subject: enosys: include sys/syscall.h X-Git-Tag: v2.40-rc1~453^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c1bd545cb40ee35abbc1812a982a08413a8c05f;p=thirdparty%2Futil-linux.git enosys: include sys/syscall.h 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 --- 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"