diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-10-04 22:57:12 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-10-04 22:57:12 +0300 |
commit | ebfb2c5e1f344e5c6e549b9dedaa49b0749a4a24 (patch) | |
tree | 7e2f519ad2be01b8f9c7b230f71d479d550c9ae4 /src/liblzma/check/crc32_tablegen.c | |
parent | Add support for --enable-assume-ram=SIZE. (diff) | |
download | xz-ebfb2c5e1f344e5c6e549b9dedaa49b0749a4a24.tar.xz |
Use a tuklib module for integer handling.
This replaces bswap.h and integer.h.
The tuklib module uses <byteswap.h> on GNU,
<sys/endian.h> on *BSDs and <sys/byteorder.h>
on Solaris, which may contain optimized code
like inline assembly.
Diffstat (limited to 'src/liblzma/check/crc32_tablegen.c')
-rw-r--r-- | src/liblzma/check/crc32_tablegen.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/liblzma/check/crc32_tablegen.c b/src/liblzma/check/crc32_tablegen.c index 56bc5c7f..31a4d275 100644 --- a/src/liblzma/check/crc32_tablegen.c +++ b/src/liblzma/check/crc32_tablegen.c @@ -14,12 +14,8 @@ // /////////////////////////////////////////////////////////////////////////////// -#include <inttypes.h> #include <stdio.h> - -#ifdef WORDS_BIGENDIAN -# include "../../common/bswap.h" -#endif +#include "../../common/tuklib_integer.h" static uint32_t crc32_table[8][256]; @@ -48,7 +44,7 @@ init_crc32_table(void) #ifdef WORDS_BIGENDIAN for (size_t s = 0; s < 8; ++s) for (size_t b = 0; b < 256; ++b) - crc32_table[s][b] = bswap_32(crc32_table[s][b]); + crc32_table[s][b] = bswap32(crc32_table[s][b]); #endif return; |