mirror of
https://github.com/corda/corda.git
synced 2025-01-23 21:08:48 +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
|