mirror of
https://github.com/corda/corda.git
synced 2025-01-23 12:58:35 +00:00
f430f3f00e
compile on Mac OS X
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
|