]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/check/crc64_table.c
Introduced compatibility with systems that have pre-C99
[icculus/xz.git] / src / liblzma / check / crc64_table.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       crc64_table.c
4 /// \brief      Precalculated CRC64 table with correct endianness
5 //
6 //  This code has been put into the public domain.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "sysdefs.h"
15
16 #ifdef WORDS_BIGENDIAN
17 #       include "crc64_table_be.h"
18 #else
19 #       include "crc64_table_le.h"
20 #endif