mirror of
https://github.com/corda/corda.git
synced 2025-03-26 05:47:59 +00:00
8 lines
201 B
C
8 lines
201 B
C
#include "zlib.h"
|
|
|
|
#ifdef inflateInit2
|
|
#undef inflateInit2
|
|
#define inflateInit2(strm, windowBits) \
|
|
inflateInit2_((strm), (windowBits), ZLIB_VERSION, static_cast<int>(sizeof(z_stream)))
|
|
#endif
|