brintos

brintos / linux-shallow public Read only

0
0
Text · 172 B · 55268c0 Raw
13 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <zstd.h>3 4int main(void)5{6	ZSTD_CStream	*cstream;7 8	cstream = ZSTD_createCStream();9	ZSTD_freeCStream(cstream);10 11	return 0;12}13