From: Hans Kristian Rosbach Date: Mon, 15 May 2023 13:48:11 +0000 (+0200) Subject: Remove refrences to z_size_t from zlib-ng.h, since we use size_t directly. X-Git-Tag: 2.1.1-beta2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=144b1d4cc5418eb50dfa1e1ca18d3b69ffd0c73c;p=thirdparty%2Fzlib-ng.git Remove refrences to z_size_t from zlib-ng.h, since we use size_t directly. --- diff --git a/zlib-ng.h.in b/zlib-ng.h.in index 7f68f7a3..36967182 100644 --- a/zlib-ng.h.in +++ b/zlib-ng.h.in @@ -1411,9 +1411,7 @@ size_t zng_gzfread(void *buf, size_t size, size_t nitems, gzFile file); /* Read and decompress up to nitems items of size size from file into buf, otherwise operating as gzread() does. This duplicates the interface of - stdio's fread(), with size_t request and return types. If the library - defines size_t, then z_size_t is identical to size_t. If not, then z_size_t - is an unsigned integer type that can contain a pointer. + stdio's fread(), with size_t request and return types. gzfread() returns the number of full items read of size size, or zero if the end of the file was reached and a full item could not be read, or if