diff options
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ const char *z_errmsg[10] = { | |||
26 | ""}; | 26 | ""}; |
27 | 27 | ||
28 | 28 | ||
29 | const char * EXPORT zlibVersion() | 29 | const char * ZEXPORT zlibVersion() |
30 | { | 30 | { |
31 | return ZLIB_VERSION; | 31 | return ZLIB_VERSION; |
32 | } | 32 | } |
@@ -49,7 +49,7 @@ void z_error (m) | |||
49 | /* exported to allow conversion of error code to string for compress() and | 49 | /* exported to allow conversion of error code to string for compress() and |
50 | * uncompress() | 50 | * uncompress() |
51 | */ | 51 | */ |
52 | const char * EXPORT zError(err) | 52 | const char * ZEXPORT zError(err) |
53 | int err; | 53 | int err; |
54 | { | 54 | { |
55 | return ERR_MSG(err); | 55 | return ERR_MSG(err); |