diff options
| author | Mark Adler <git@madler.net> | 2026-02-16 18:26:35 -0800 |
|---|---|---|
| committer | Mark Adler <git@madler.net> | 2026-02-16 18:53:00 -0800 |
| commit | 33e71060aa657e80e87b8d73e9e5cc3dd9be4e8b (patch) | |
| tree | 88bdec7a6684c15406581b3fcee445e6f2cdb590 /zutil.h | |
| parent | d7bc8cafee5bdfde98732622d3b99e2f52f7b2eb (diff) | |
| download | zlib-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -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 */ |
