From 1a6bc51a70e450546727502d96fe3317c1d2616f Mon Sep 17 00:00:00 2001 From: Miko Larsson Date: Thu, 22 Feb 2024 12:44:54 +0100 Subject: [PATCH] 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 --- t/io_uring.c | 1 + 1 file changed, 1 insertion(+) 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" -- 2.25.1