1// SPDX-License-Identifier: GPL-2.0
2#include <zlib.h>
3
4int main(void)
5{
6	z_stream zs;
7
8	inflateInit(&zs);
9	return 0;
10}
11