aboutsummaryrefslogtreecommitdiff
path: root/zutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'zutil.h')
-rw-r--r--zutil.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zutil.h b/zutil.h
index 0f983f73..80f6d85b 100644
--- a/zutil.h
+++ b/zutil.h
@@ -218,9 +218,9 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
218# define zmemzero(dest, len) memset(dest, 0, len) 218# define zmemzero(dest, len) memset(dest, 0, len)
219# endif 219# endif
220#else 220#else
221 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len); 221 void ZLIB_INTERNAL zmemcpy(void FAR *, const void FAR *, z_size_t);
222 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len); 222 int ZLIB_INTERNAL zmemcmp(const void FAR *, const void FAR *, z_size_t);
223 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len); 223 void ZLIB_INTERNAL zmemzero(void FAR *, z_size_t);
224#endif 224#endif
225 225
226/* Diagnostic functions */ 226/* Diagnostic functions */