aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/zlib/deflate.h
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2023-09-06 21:59:05 +0300
committerthegeorg <thegeorg@yandex-team.com>2023-09-06 22:15:57 +0300
commit53f81d0ce8d2103f54b291b25f171ecd00e13d81 (patch)
tree84e1a98ec06c4570e9dfbd9cf9176d22b3488d95 /contrib/libs/zlib/deflate.h
parent645adb92481ca39f3981285fde9b5f41e783e978 (diff)
downloadydb-53f81d0ce8d2103f54b291b25f171ecd00e13d81.tar.gz
Update contrib/libs/zlib to 1.3
Diffstat (limited to 'contrib/libs/zlib/deflate.h')
-rw-r--r--contrib/libs/zlib/deflate.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/libs/zlib/deflate.h b/contrib/libs/zlib/deflate.h
index 1a06cd5f25d..8696791429f 100644
--- a/contrib/libs/zlib/deflate.h
+++ b/contrib/libs/zlib/deflate.h
@@ -291,14 +291,14 @@ typedef struct internal_state {
memory checker errors from longest match routines */
/* in trees.c */
-void ZLIB_INTERNAL _tr_init OF((deflate_state *s));
-int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
-void ZLIB_INTERNAL _tr_flush_block OF((deflate_state *s, charf *buf,
- ulg stored_len, int last));
-void ZLIB_INTERNAL _tr_flush_bits OF((deflate_state *s));
-void ZLIB_INTERNAL _tr_align OF((deflate_state *s));
-void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
- ulg stored_len, int last));
+void ZLIB_INTERNAL _tr_init(deflate_state *s);
+int ZLIB_INTERNAL _tr_tally(deflate_state *s, unsigned dist, unsigned lc);
+void ZLIB_INTERNAL _tr_flush_block(deflate_state *s, charf *buf,
+ ulg stored_len, int last);
+void ZLIB_INTERNAL _tr_flush_bits(deflate_state *s);
+void ZLIB_INTERNAL _tr_align(deflate_state *s);
+void ZLIB_INTERNAL _tr_stored_block(deflate_state *s, charf *buf,
+ ulg stored_len, int last);
#define d_code(dist) \
((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])