diff options
Diffstat (limited to 'src/Common/Crc.c')
-rw-r--r-- | src/Common/Crc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Crc.c b/src/Common/Crc.c index 295bf8da..7e18cb4f 100644 --- a/src/Common/Crc.c +++ b/src/Common/Crc.c @@ -121,6 +121,7 @@ unsigned __int32 GetCrc32 (unsigned char *data, int length) return r ^ 0xFFFFFFFFUL; } +#if 0 BOOL crc32_selftests () { unsigned __int8 testData[32]; @@ -131,5 +132,6 @@ BOOL crc32_selftests () return GetCrc32 (testData, sizeof (testData)) == 0x91267E8AUL; } +#endif #endif // TC_MINIMIZE_CODE_SIZE |