summaryrefslogtreecommitdiff
path: root/inffast.c
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2019-07-18 04:21:13 -0700
committerHans Kristian Rosbach <hk-github@circlestorm.org>2019-07-18 13:21:13 +0200
commitf06c71f9817700eccb507f54249a8c52335bf693 (patch)
tree830aa316289d6637d3ec024ea5da78a23327267e /inffast.c
parentd746d233c1dc70e0717877bccf8d9dc099d056d5 (diff)
Add zng_ prefix to internal functions to avoid linking conflicts with zlib. (#363)
Diffstat (limited to 'inffast.c')
-rw-r--r--inffast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inffast.c b/inffast.c
index bd9b2a1..23edb08 100644
--- a/inffast.c
+++ b/inffast.c
@@ -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 */