diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2019-07-18 04:21:13 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2019-07-18 13:21:13 +0200 |
commit | f06c71f9817700eccb507f54249a8c52335bf693 (patch) | |
tree | 830aa316289d6637d3ec024ea5da78a23327267e /inffast.c | |
parent | d746d233c1dc70e0717877bccf8d9dc099d056d5 (diff) |
Add zng_ prefix to internal functions to avoid linking conflicts with zlib. (#363)
Diffstat (limited to 'inffast.c')
-rw-r--r-- | inffast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ requires strm->avail_out >= 258 for each loop to avoid checking for output space. */ -void ZLIB_INTERNAL inflate_fast(PREFIX3(stream) *strm, unsigned long start) { +void ZLIB_INTERNAL zng_inflate_fast(PREFIX3(stream) *strm, unsigned long start) { /* start: inflate()'s starting value for strm->avail_out */ struct inflate_state *state; const unsigned char *in; /* local strm->next_in */ |