* external/zlib/Makefile
+ Added extra build option for mingw/cygwin compilers to
suppress new warning:
'warning: visibility attribute not supported in this configuration; ignored'
* external/zlib/crc32.c
* external/zlib/deflate.c
* external/zlib/deflate.h
* external/zlib/gzguts.h
* external/zlib/gzlib.c
* external/zlib/gzread.c
* external/zlib/inffast.c
* external/zlib/inffast.h
* external/zlib/inftrees.c
* external/zlib/inftrees.h
* external/zlib/README
* external/zlib/trees.c
* external/zlib/trees.h
* external/zlib/zconf.h
* external/zlib/zlib.dif
* external/zlib/zlib.h
* external/zlib/zutil.c
* external/zlib/zutil.h
* Updated zlib component to 1.2.5 (from 1.2.4)
upstream changelog: http://zlib.net/ChangeLog.txt
* Reapplied all local patches.
; Thanks for Tamas Tevesz for this patch.
(Committed without modifications)
12 lines
427 B
C
12 lines
427 B
C
/* inffast.h -- header to use inffast.c
|
|
* Copyright (C) 1995-2003, 2010 Mark Adler
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
/* WARNING: this file should *not* be used by applications. It is
|
|
part of the implementation of the compression library and is
|
|
subject to change. Applications should only use zlib.h.
|
|
*/
|
|
|
|
void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
|