Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / build / feature / test-libzstd.c
blob55268c01b84dbe81cfc7e42f3f7681df6b5317a1
1 // SPDX-License-Identifier: GPL-2.0
2 #include <zstd.h>
4 int main(void)
6 ZSTD_CStream *cstream;
8 cstream = ZSTD_createCStream();
9 ZSTD_freeCStream(cstream);
11 return 0;