From 7416ba8b2396e2986241aa4e202d149321a873dd Mon Sep 17 00:00:00 2001 From: aliaspider Date: Tue, 31 Jan 2017 01:51:33 +0100 Subject: [PATCH] add get_crc_table() to deps/zlib/crc32.c --- deps/zlib/crc32.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deps/zlib/crc32.c b/deps/zlib/crc32.c index 73369a2170..a3eee9205a 100644 --- a/deps/zlib/crc32.c +++ b/deps/zlib/crc32.c @@ -80,6 +80,11 @@ extern "C" { return crc ^ 0xffffffffL; } + const unsigned long * get_crc_table() + { + return crc_table; + } + #ifdef __cplusplus } #endif