aboutsummaryrefslogtreecommitdiff
path: root/zutil.h
diff options
context:
space:
mode:
authorMark Adler <git@madler.net>2026-02-16 18:26:35 -0800
committerMark Adler <git@madler.net>2026-02-16 18:53:00 -0800
commit33e71060aa657e80e87b8d73e9e5cc3dd9be4e8b (patch)
tree88bdec7a6684c15406581b3fcee445e6f2cdb590 /zutil.h
parentd7bc8cafee5bdfde98732622d3b99e2f52f7b2eb (diff)
downloadzlib-33e71060aa657e80e87b8d73e9e5cc3dd9be4e8b.tar.gz
zlib-33e71060aa657e80e87b8d73e9e5cc3dd9be4e8b.tar.bz2
zlib-33e71060aa657e80e87b8d73e9e5cc3dd9be4e8b.zip
Align the backup zmem* functions with their library counterparts.
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 */