From: Sven Eckelmann Date: Fri, 23 May 2025 11:15:53 +0200 Subject: batmand: Add missing string.h include The build failed because various string functions couldn't be found. This happened because the indirect include of string.h is now gone in musl 1.2.5. Signed-off-by: Sven Eckelmann --- a/hna.c +++ b/hna.c @@ -27,6 +27,7 @@ #include #include +#include #include --- a/linux/kernel.c +++ b/linux/kernel.c @@ -29,6 +29,7 @@ #include #include #include +#include #include "../os.h" #include "../batman.h" --- a/linux/route.c +++ b/linux/route.c @@ -29,6 +29,7 @@ #include /* ifr_if, ifr_tun */ #include #include +#include #include #include "../os.h" --- a/linux/tun.c +++ b/linux/tun.c @@ -32,6 +32,7 @@ #include #include #include /* system() */ +#include #include /* WEXITSTATUS */ #include "../os.h"