1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       crc32_table.c
4207753Smm/// \brief      Precalculated CRC32 table with correct endianness
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#include "common.h"
14207753Smm
15360523Sdelphij// Having the declaration here silences clang -Wmissing-variable-declarations.
16360523Sdelphijextern const uint32_t lzma_crc32_table[8][256];
17360523Sdelphij
18207753Smm#ifdef WORDS_BIGENDIAN
19207753Smm#	include "crc32_table_be.h"
20207753Smm#else
21207753Smm#	include "crc32_table_le.h"
22207753Smm#endif
23