summaryrefslogtreecommitdiffstats
path: root/thirdparty/zlib/deflate.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-08-29 11:02:34 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-08-29 11:02:34 +0200
commite0e1f2e4a2056db1a908af75612daaaf5b129ebd (patch)
tree49b45c6c5609f07b93fe3b30f531b8cc76d92565 /thirdparty/zlib/deflate.h
parent541674d10692cf608f1245d7eede459bdc96b74f (diff)
downloadredot-engine-e0e1f2e4a2056db1a908af75612daaaf5b129ebd.tar.gz
zlib/minizip: Update to version 1.3
Upstreams the fix from #73310, so we can remove that patch. Remove `infback.c` which we stopped compiling after #79273. The `OF` macro was also removed so I can drop the patch where I yell at Gentoo developers.
Diffstat (limited to 'thirdparty/zlib/deflate.h')
-rw-r--r--thirdparty/zlib/deflate.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/thirdparty/zlib/deflate.h b/thirdparty/zlib/deflate.h
index 1a06cd5f25..8696791429 100644
--- a/thirdparty/zlib/deflate.h
+++ b/thirdparty/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)])