summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-11-14 07:41:17 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-11-14 07:41:17 (GMT)
commita69045247e1387fc673deb432549cb266e5009ee (patch)
treecced63c48cf09485fc6233e6ccd7348f92d6c9b7 /compat
parent50b1bca232fa01a294796371401382b7960369a0 (diff)
parentb16a1198d956d1b2e69a3c5396a0a51fa6ce4cc3 (diff)
downloadtcl-a69045247e1387fc673deb432549cb266e5009ee.zip
tcl-a69045247e1387fc673deb432549cb266e5009ee.tar.gz
tcl-a69045247e1387fc673deb432549cb266e5009ee.tar.bz2
Merge 8.7
Diffstat (limited to 'compat')
-rw-r--r--compat/zlib/contrib/minizip/crypt.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/compat/zlib/contrib/minizip/crypt.h b/compat/zlib/contrib/minizip/crypt.h
index 1e9e820..c422c26 100644
--- a/compat/zlib/contrib/minizip/crypt.h
+++ b/compat/zlib/contrib/minizip/crypt.h
@@ -29,6 +29,12 @@
#define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
+#ifdef Z_U4
+ typedef Z_U4 z_crc_t;
+#else
+ typedef unsigned long z_crc_t;
+#endif
+
/***********************************************************************
* Return the next byte in the pseudo-random sequence
*/