brintos

brintos / linux-shallow public Read only

0
0
Text · 119 B · da6c357 Raw
11 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <zlib.h>3 4int main(void)5{6	z_stream zs;7 8	inflateInit(&zs);9	return 0;10}11