Added missing LZMA_API to the C versions of the CRC functions.

The x86 assembler versions were already OK.
This commit is contained in:
Lasse Collin 2007-12-09 17:14:07 +02:00
parent c90daf86ce
commit 329c272d50
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -23,7 +23,7 @@
// See comments in crc32.c.
extern uint64_t
extern LZMA_API uint64_t
lzma_crc64(const uint8_t *buf, size_t size, uint64_t crc)
{
crc = ~crc;