From: Miko Larsson Date: Thu, 22 Feb 2024 11:44:54 +0000 (+0100) Subject: t/io_uring: include libgen.h X-Git-Tag: fio-3.37~28^2~2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=1a6bc51a70e450546727502d96fe3317c1d2616f;p=fio.git t/io_uring: include libgen.h This fixes the build with musl + clang >=15; musl doesn't declare basename() anywhere else, and clang >=15 doesn't allow implicit declarations. Fixes: 4b9e13dc27fb (t/io_uring: support NUMA placement) Signed-off-by: Miko Larsson --- diff --git a/t/io_uring.c b/t/io_uring.c index 46b153dc..6fc40cbb 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "../arch/arch.h" #include "../os/os.h"