diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-23 21:14:45 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-23 21:14:45 +0200 |
commit | f533fd6e9b2dc7bfd9ce50570f2f02dd8ec6a7ed (patch) | |
tree | 0e3596cdba626d451c4a186295c1486333655d81 /zutil.c | |
parent | 2b6fd3880e8534ec902c8e5fe1f44bff6312e91c (diff) |
Update remaining function prototypes to ANSI C standard
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,12 +25,12 @@ const char * const z_errmsg[10] = { const char zlibng_string[] = " zlib-ng 1.9.9 forked from zlib 1.2.8 "; -const char * ZEXPORT zlibVersion() +const char * ZEXPORT zlibVersion(void) { return ZLIB_VERSION; } -uLong ZEXPORT zlibCompileFlags() +uLong ZEXPORT zlibCompileFlags(void) { uLong flags; |