summaryrefslogtreecommitdiff
path: root/deps/zlib/inffast.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/zlib/inffast.h')
-rw-r--r--deps/zlib/inffast.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/deps/zlib/inffast.h b/deps/zlib/inffast.h
index b090bde1a0..e5c1aa4ca8 100644
--- a/deps/zlib/inffast.h
+++ b/deps/zlib/inffast.h
@@ -8,19 +8,4 @@
subject to change. Applications should only use zlib.h.
*/
-/* INFLATE_FAST_MIN_INPUT: the minimum number of input bytes needed so that
- we can safely call inflate_fast() with only one up-front bounds check. One
- length/distance code pair (15 bits for the length code, 5 bits for length
- extra, 15 bits for the distance code, 13 bits for distance extra) requires
- reading up to 48 input bits (6 bytes).
-*/
-#define INFLATE_FAST_MIN_INPUT 6
-
-/* INFLATE_FAST_MIN_OUTPUT: the minimum number of output bytes needed so that
- we can safely call inflate_fast() with only one up-front bounds check. One
- length/distance code pair can output up to 258 bytes, which is the maximum
- length that can be coded.
-*/
-#define INFLATE_FAST_MIN_OUTPUT 258
-
-void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
+void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));