diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2015-11-22 17:15:58 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-01-30 10:35:05 +0100 |
commit | 631817cce8dca45d6f725da143ab5fa580a9d5b0 (patch) | |
tree | 564f94aba9af7df1274522b5b7755e669428d69d /infback.c | |
parent | 343c4c549107d31f6eeabfb4b31bec4502a2ea0e (diff) |
local -> static
* local -> static
* Normalize and cleanup line-endings
* Fix warnings under Visual Studio.
* Whitespace cleanup
***
This patch has been edited to merge cleanly and to exclude type changes.
Based on 8d7a7c3b82c6e38734bd504dac800b148ab410d0 "Type Cleanup"
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ #include "inffast.h" /* function prototypes */ -local void fixedtables(struct inflate_state *state); +static void fixedtables(struct inflate_state *state); /* strm provides memory allocation functions in zalloc and zfree, or @@ -64,7 +64,7 @@ int ZEXPORT inflateBackInit_(z_stream *strm, int windowBits, unsigned char *wind used for threaded applications, since the rewriting of the tables and virgin may not be thread-safe. */ -local void fixedtables(struct inflate_state *state) { +static void fixedtables(struct inflate_state *state) { #ifdef BUILDFIXED static int virgin = 1; static code *lenfix, *distfix; |