From 4330ca17e83d8f24b86a6e3531f7114c0dc6e255 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christoph=20Gr=C3=BCninger?= Date: Tue, 13 May 2025 19:34:04 +0200 Subject: [PATCH] Add includes for getopt() and strcasecmp() Found by GCC in C23 mode (implicit-function-declaration). --- src/chksum.c | 1 + tools/repo2solv.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/chksum.c b/src/chksum.c index 1f8ab471..ded8d567 100644 --- a/src/chksum.c +++ b/src/chksum.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include "pool.h" diff --git a/tools/repo2solv.c b/tools/repo2solv.c index af9409d7..edf47f35 100644 --- a/tools/repo2solv.c +++ b/tools/repo2solv.c @@ -5,6 +5,7 @@ * for further information */ +#include #include #include #include -- 2.47.2