summaryrefslogtreecommitdiffstats
path: root/lib_generic/crc32.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib_generic/crc32.c')
-rw-r--r--lib_generic/crc32.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib_generic/crc32.c b/lib_generic/crc32.c
index 3d99b69296..3826c76339 100644
--- a/lib_generic/crc32.c
+++ b/lib_generic/crc32.c
@@ -130,18 +130,6 @@ local const uLongf crc_table[256] = {
};
#endif
-#if 0
-/* =========================================================================
- * This function can be used by asm versions of crc32()
- */
-const uLongf * ZEXPORT get_crc_table()
-{
-#ifdef DYNAMIC_CRC_TABLE
- if (crc_table_empty) make_crc_table();
-#endif
- return (const uLongf *)crc_table;
-}
-#endif
/* ========================================================================= */
#define DO1(buf) crc = crc_table[((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8);