From bae676a44e7f7e49209f380523b1516e6c824acf Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Wed, 29 Nov 2023 14:19:06 +0100 Subject: port_fwd, util: Include additional headers to fix build with musl lseek() is declared in unistd.h, and stdio.h provides sscanf(). Include these two headers in port_fwd.c. SIGCHLD, even if used exclusively for clone(), is defined in signal.h: add the include to util.h, as NS_CALL needs it. Reported-by: lemmi Link: https://github.com/void-linux/void-packages/actions/runs/6999782606/job/19039526604#step:7:57 Signed-off-by: Stefano Brivio Reviewed-by: David Gibson --- port_fwd.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'port_fwd.c') diff --git a/port_fwd.c b/port_fwd.c index 7943a30..6f6c836 100644 --- a/port_fwd.c +++ b/port_fwd.c @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include "util.h" #include "port_fwd.h" -- cgit v1.2.3