* lib/crc-generate-table.c (crc_table): Make static.
+2025-04-26 Bruno Haible <bruno@clisp.org>
+
+ crc: Fix -Wmissing-variable-declarations warning.
+ * lib/crc-generate-table.c (crc_table): Make static.
+
2025-04-26 Bruno Haible <bruno@clisp.org>
stdopen: Silence -Wanalyzer-fd-leak warnings.
* the slice-by-8 algorithm which uses 8 tables from in 8-bit
* increments from make_crc_table(8) to make_crc_table(64)
*/
-unsigned long crc_table[256];
+static unsigned long crc_table[256];
static void
make_crc_table (int bits)