aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/check/crc32_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/liblzma/check/crc32_table.c')
-rw-r--r--src/liblzma/check/crc32_table.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/liblzma/check/crc32_table.c b/src/liblzma/check/crc32_table.c
index 368874eb..b11762ae 100644
--- a/src/liblzma/check/crc32_table.c
+++ b/src/liblzma/check/crc32_table.c
@@ -12,6 +12,9 @@
#include "common.h"
+// Having the declaration here silences clang -Wmissing-variable-declarations.
+extern const uint32_t lzma_crc32_table[8][256];
+
#ifdef WORDS_BIGENDIAN
# include "crc32_table_be.h"
#else