mirror of https://git.tukaani.org/xz.git
liblzma: Silence clang -Wmissing-variable-declarations.
This commit is contained in:
parent
267afcd995
commit
44eb961f2a
|
@ -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
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
|
||||
#include "common.h"
|
||||
|
||||
// Having the declaration here silences clang -Wmissing-variable-declarations.
|
||||
extern const uint64_t lzma_crc64_table[4][256];
|
||||
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
# include "crc64_table_be.h"
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue