summaryrefslogtreecommitdiff
path: root/inflate.c
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@solidstatenetworks.com>2020-08-22 18:24:10 -0700
committerHans Kristian Rosbach <hk-github@circlestorm.org>2020-08-31 12:33:16 +0200
commit7cffba4dd6fddd9be8f6aba8e30da0d2a2abd518 (patch)
tree9d8f3f8b8f6a1d8f6e4e1e16e650a48aaa315cd6 /inflate.c
parentb5a81501f272084ebde8a2bc3871c6c1e22d26ff (diff)
Rename ZLIB_INTERNAL to Z_INTERNAL for consistency.
Diffstat (limited to 'inflate.c')
-rw-r--r--inflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/inflate.c b/inflate.c
index 7211bf8..717e1cf 100644
--- a/inflate.c
+++ b/inflate.c
@@ -193,14 +193,14 @@ int32_t ZEXPORT PREFIX(inflatePrime)(PREFIX3(stream) *strm, int32_t bits, int32_
fixed code decoding. This returns fixed tables from inffixed_tbl.h.
*/
-void ZLIB_INTERNAL fixedtables(struct inflate_state *state) {
+void Z_INTERNAL fixedtables(struct inflate_state *state) {
state->lencode = lenfix;
state->lenbits = 9;
state->distcode = distfix;
state->distbits = 5;
}
-int ZLIB_INTERNAL inflate_ensure_window(struct inflate_state *state) {
+int Z_INTERNAL inflate_ensure_window(struct inflate_state *state) {
/* if it hasn't been done already, allocate space for the window */
if (state->window == NULL) {
unsigned wsize = 1U << state->wbits;