diff options
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lz/lz_encoder_hash.h | 1 | ||||
-rw-r--r-- | src/liblzma/lzma/fastpos.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/liblzma/lz/lz_encoder_hash.h b/src/liblzma/lz/lz_encoder_hash.h index fb15c581..4d9971ae 100644 --- a/src/liblzma/lz/lz_encoder_hash.h +++ b/src/liblzma/lz/lz_encoder_hash.h @@ -17,6 +17,7 @@ // This is to make liblzma produce the same output on big endian // systems that it does on little endian systems. lz_encoder.c // takes care of including the actual table. + lzma_attr_visibility_hidden extern const uint32_t lzma_lz_hash_table[256]; # define hash_table lzma_lz_hash_table #else diff --git a/src/liblzma/lzma/fastpos.h b/src/liblzma/lzma/fastpos.h index cba442c2..dbeb16f7 100644 --- a/src/liblzma/lzma/fastpos.h +++ b/src/liblzma/lzma/fastpos.h @@ -91,6 +91,7 @@ get_dist_slot_2(uint32_t dist) #define FASTPOS_BITS 13 +lzma_attr_visibility_hidden extern const uint8_t lzma_fastpos[1 << FASTPOS_BITS]; |