]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Remove refrences to z_size_t from zlib-ng.h, since we use size_t directly.
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Mon, 15 May 2023 13:48:11 +0000 (15:48 +0200)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Tue, 16 May 2023 08:28:28 +0000 (10:28 +0200)
zlib-ng.h.in

index 7f68f7a337e4dd8eba6041458d8988e0386be950..369671824181b306a1a7be5872e8ef740fb3f60f 100644 (file)
@@ -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