From 33e71060aa657e80e87b8d73e9e5cc3dd9be4e8b Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Mon, 16 Feb 2026 18:26:35 -0800 Subject: Align the backup zmem* functions with their library counterparts. --- zutil.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zutil.h') 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 */ # define zmemzero(dest, len) memset(dest, 0, len) # endif #else - void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len); - int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len); - void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len); + void ZLIB_INTERNAL zmemcpy(void FAR *, const void FAR *, z_size_t); + int ZLIB_INTERNAL zmemcmp(const void FAR *, const void FAR *, z_size_t); + void ZLIB_INTERNAL zmemzero(void FAR *, z_size_t); #endif /* Diagnostic functions */ -- cgit v1.2.3-55-g6feb