From cb91bc9930a920a14e1b22361b0ab53688c92f26 Mon Sep 17 00:00:00 2001 From: Andrei Gherzan Date: Wed, 13 Jul 2022 12:05:07 +0200 Subject: [PATCH] utils: Add missing include on limits.h This happens to not be an issue with glibc because it gets indirectly included via dirent.h: .. /usr/include/dirent.h [...] ..... /usr/include/linux/limits.h When using the musl libc implementation, that is not the case anymore and the build fails. Signed-off-by: Andrei Gherzan --- utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.h b/utils.h index 51863b2..2ac7226 100644 --- a/utils.h +++ b/utils.h @@ -25,6 +25,7 @@ # include # include # include +# include # include # include # include