This commit is contained in:
2025-08-26 22:57:23 +08:00
commit b703135335
25222 changed files with 6200887 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/* Generated by configure */
#include <zlib.h>
int main(int argc, char **argv)
{
(void)argc; (void)argv;
/* BEGIN TEST: */
z_streamp stream = 0;
(void) zlibVersion();
(void) compress2(0, 0, 0, 0, 1); // compress2 was added in zlib version 1.0.8
/* END TEST */
return 0;
}