-
-
Notifications
You must be signed in to change notification settings - Fork 665
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code extracted from: https://github.com/zlib-ng/zlib-ng.git at commit a7b773697b34c19f246defc1ffb760b0d39be391 (develop).
- Loading branch information
Showing
19 changed files
with
227 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
*.c text | ||
*.h text | ||
Makefile text | ||
configure text eol=lf | ||
testCVEinputs.sh text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "../../zutil.h" | ||
#include "zutil.h" | ||
#include "s390.h" | ||
|
||
#include <sys/auxv.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef S390_H_ | ||
#define S390_H_ | ||
|
||
#include "../../zutil.h" | ||
#include "zutil.h" | ||
|
||
extern int s390_cpu_has_vx; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
; zlib data compression library | ||
EXPORTS | ||
; basic functions | ||
@ZLIB_SYMBOL_PREFIX@zlibVersion | ||
@ZLIB_SYMBOL_PREFIX@deflate | ||
@ZLIB_SYMBOL_PREFIX@deflateEnd | ||
@ZLIB_SYMBOL_PREFIX@inflate | ||
@ZLIB_SYMBOL_PREFIX@inflateEnd | ||
; advanced functions | ||
@ZLIB_SYMBOL_PREFIX@deflateSetDictionary | ||
@ZLIB_SYMBOL_PREFIX@deflateGetDictionary | ||
@ZLIB_SYMBOL_PREFIX@deflateCopy | ||
@ZLIB_SYMBOL_PREFIX@deflateReset | ||
@ZLIB_SYMBOL_PREFIX@deflateParams | ||
@ZLIB_SYMBOL_PREFIX@deflateTune | ||
@ZLIB_SYMBOL_PREFIX@deflateBound | ||
@ZLIB_SYMBOL_PREFIX@deflatePending | ||
@ZLIB_SYMBOL_PREFIX@deflatePrime | ||
@ZLIB_SYMBOL_PREFIX@deflateSetHeader | ||
@ZLIB_SYMBOL_PREFIX@inflateSetDictionary | ||
@ZLIB_SYMBOL_PREFIX@inflateGetDictionary | ||
@ZLIB_SYMBOL_PREFIX@inflateSync | ||
@ZLIB_SYMBOL_PREFIX@inflateCopy | ||
@ZLIB_SYMBOL_PREFIX@inflateReset | ||
@ZLIB_SYMBOL_PREFIX@inflateReset2 | ||
@ZLIB_SYMBOL_PREFIX@inflatePrime | ||
@ZLIB_SYMBOL_PREFIX@inflateMark | ||
@ZLIB_SYMBOL_PREFIX@inflateGetHeader | ||
@ZLIB_SYMBOL_PREFIX@inflateBack | ||
@ZLIB_SYMBOL_PREFIX@inflateBackEnd | ||
@ZLIB_SYMBOL_PREFIX@zlibCompileFlags | ||
; utility functions | ||
@ZLIB_SYMBOL_PREFIX@compress | ||
@ZLIB_SYMBOL_PREFIX@compress2 | ||
@ZLIB_SYMBOL_PREFIX@compressBound | ||
@ZLIB_SYMBOL_PREFIX@uncompress | ||
@ZLIB_SYMBOL_PREFIX@uncompress2 | ||
; large file functions | ||
@ZLIB_SYMBOL_PREFIX@adler32_combine64 | ||
@ZLIB_SYMBOL_PREFIX@crc32_combine64 | ||
; checksum functions | ||
@ZLIB_SYMBOL_PREFIX@adler32 | ||
@ZLIB_SYMBOL_PREFIX@adler32_z | ||
@ZLIB_SYMBOL_PREFIX@crc32 | ||
@ZLIB_SYMBOL_PREFIX@crc32_z | ||
@ZLIB_SYMBOL_PREFIX@adler32_combine | ||
@ZLIB_SYMBOL_PREFIX@crc32_combine | ||
; various hacks, don't look :) | ||
@ZLIB_SYMBOL_PREFIX@deflateInit_ | ||
@ZLIB_SYMBOL_PREFIX@deflateInit2_ | ||
@ZLIB_SYMBOL_PREFIX@inflateInit_ | ||
@ZLIB_SYMBOL_PREFIX@inflateInit2_ | ||
@ZLIB_SYMBOL_PREFIX@inflateBackInit_ | ||
@ZLIB_SYMBOL_PREFIX@zError | ||
@ZLIB_SYMBOL_PREFIX@inflateSyncPoint | ||
@ZLIB_SYMBOL_PREFIX@get_crc_table | ||
@ZLIB_SYMBOL_PREFIX@inflateUndermine | ||
@ZLIB_SYMBOL_PREFIX@inflateValidate | ||
@ZLIB_SYMBOL_PREFIX@inflateCodesUsed | ||
@ZLIB_SYMBOL_PREFIX@inflateResetKeep | ||
@ZLIB_SYMBOL_PREFIX@deflateResetKeep |
Oops, something went wrong.