From 492a04d47d11add232bc85d32c31e3f14b8be3f6 Mon Sep 17 00:00:00 2001 From: black Date: Mon, 9 Sep 2024 13:58:55 +0200 Subject: [PATCH] Fix implicit function declaration strcasecmp icons-hash.c uses strcasecmp from strings.h, but does not include it. At least when building against musl with gcc 15, this is a fatal error. --- src/icons-hash.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/icons-hash.c b/src/icons-hash.c index f0f2b094..699af33b 100644 --- a/src/icons-hash.c +++ b/src/icons-hash.c @@ -23,6 +23,7 @@ #include #include +#include #include #include #include "icons.h"