From 7ac313dce6047eeaaaae76f67ecbc089b64f0afd Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Thu, 25 Sep 2025 22:50:01 +0200 Subject: [PATCH] join: remove unused #include "argmatch.h" Prompted by the syntax-check failure: maint.mk: the above files include argmatch.h but don't use it make: *** [maint.mk:741: sc_prohibit_argmatch_without_use] Error 1 * src/join.c: Remove include, as the previous commit changed from using ARRAY_CARDINALITY to countof - for which system.h includes the header. --- src/join.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/join.c b/src/join.c index 5cf87d1e8e..e1899a93a2 100644 --- a/src/join.c +++ b/src/join.c @@ -33,7 +33,6 @@ #include "stdio--.h" #include "xmemcoll.h" #include "xstrtol.h" -#include "argmatch.h" /* The official name of this program (e.g., no 'g' prefix). */ #define PROGRAM_NAME "join" -- 2.47.3