1#include <zlib.h>
2
3int main(void)
4{
5	z_stream zs;
6
7	inflateInit(&zs);
8	return 0;
9}
10