From d3e8736a87603806aeb6c14cca759ad22c33e897 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Sat, 27 Apr 2024 19:34:37 -0700 Subject: [PATCH 2/2] maint: pacify GCC 14 -Wmissing-variable-declarations, part 2 * src/crctab.c (crctab): Add an extern decl. --- src/crctab.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crctab.c b/src/crctab.c index fdf2fdf87..f9f82ef3c 100644 --- a/src/crctab.c +++ b/src/crctab.c @@ -1,6 +1,7 @@ #include #include +extern uint_fast32_t const crctab[8][256]; uint_fast32_t const crctab[8][256] = { { 0x00000000, -- 2.44.0