From: Lucas De Marchi Date: Tue, 11 Jun 2024 13:09:19 +0000 (-0500) Subject: testsuite: Add missing.h include X-Git-Tag: v33~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8837461494761d58be579641f20cc043274adddf;p=thirdparty%2Fkmod.git testsuite: Add missing.h include basename() moved to missing.h when the libc doesn't provide it, but testsuite is not including it. Add missing include. Fixes: 11eb9bc67c31 ("Use portable implementation for basename API") Signed-off-by: Lucas De Marchi --- diff --git a/testsuite/testsuite.c b/testsuite/testsuite.c index 318343ac..f4280be2 100644 --- a/testsuite/testsuite.c +++ b/testsuite/testsuite.c @@ -32,6 +32,7 @@ #include #include +#include #include #include "testsuite.h"