diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-27 15:52:26 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-29 20:36:19 +0100 |
commit | 761b3051699bb7c9f02579a7a6139e647d422fab (patch) | |
tree | 2e3c9b6a66fc587835508dd2df7540f441fc9b62 /lib/sqfs/comp/zlib/inffast.h | |
parent | 113b174c5807f76cb14cfed7a8f86a299393666e (diff) |
Add a small version of zlib that can be built in statically
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/comp/zlib/inffast.h')
-rw-r--r-- | lib/sqfs/comp/zlib/inffast.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sqfs/comp/zlib/inffast.h b/lib/sqfs/comp/zlib/inffast.h new file mode 100644 index 0000000..e5c1aa4 --- /dev/null +++ b/lib/sqfs/comp/zlib/inffast.h @@ -0,0 +1,11 @@ +/* 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)); |