diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-09 17:14:07 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-09 17:14:07 +0200 |
commit | 329c272d501e88793dda5540358d55c12428d194 (patch) | |
tree | d70445dfb14b66fb06043ebdc1822aa25df18585 /src/liblzma/check/crc32.c | |
parent | * tests/test_block_header.c (test3): Remove duplicate initializer. (diff) | |
download | xz-329c272d501e88793dda5540358d55c12428d194.tar.xz |
Added missing LZMA_API to the C versions of the CRC functions.
The x86 assembler versions were already OK.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/check/crc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/check/crc32.c b/src/liblzma/check/crc32.c index 091e1422..698cf768 100644 --- a/src/liblzma/check/crc32.c +++ b/src/liblzma/check/crc32.c @@ -18,7 +18,7 @@ // If you make any changes, do some bench marking! Seemingly unrelated // changes can very easily ruin the performance (and very probably is // very compiler dependent). -extern uint32_t +extern LZMA_API uint32_t lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc) { crc = ~crc; |