Skip to content

Commit

Permalink
Merge branch 'master' into v2.92c
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceLR committed Mar 9, 2020
2 parents 89e766c + 5425381 commit e08d5d2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
Binary file added contrib/archicons/fedora64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions contrib/infback9/README
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ This copy of zlib 1.2.11's unsupported infback9 code has been modified as follow
* Fixed a fall-through warning.
* Replaced references to zcalloc and zcfree with inline implementations. This
is due to older versions of zlib seemingly not exposing these.
* Removed OF() wrapper for function declarations (unnecessary).
10 changes: 5 additions & 5 deletions contrib/infback9/infback9.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
extern "C" {
#endif

ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
ZEXTERN int ZEXPORT inflateBack9 (z_stream FAR *strm,
in_func in, void FAR *in_desc,
out_func out, void FAR *out_desc));
ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
out_func out, void FAR *out_desc);
ZEXTERN int ZEXPORT inflateBack9End (z_stream FAR *strm);
ZEXTERN int ZEXPORT inflateBack9Init_ (z_stream FAR *strm,
unsigned char FAR *window,
const char *version,
int stream_size));
int stream_size);
#define inflateBack9Init(strm, window) \
inflateBack9Init_((strm), (window), \
ZLIB_VERSION, sizeof(z_stream))
Expand Down
4 changes: 2 additions & 2 deletions contrib/infback9/inftree9.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ typedef enum {
DISTS
} codetype;

extern int inflate_table9 OF((codetype type, unsigned short FAR *lens,
extern int inflate_table9 (codetype type, unsigned short FAR *lens,
unsigned codes, code FAR * FAR *table,
unsigned FAR *bits, unsigned short FAR *work));
unsigned FAR *bits, unsigned short FAR *work);
#endif

0 comments on commit e08d5d2

Please sign in to comment.