Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
mainline
/
linux
/
7c37d399c2b84d4b79de4d512a38373f1d71ab90
/
.
/
tools
/
build
/
feature
/
test-libzstd.c
blob: 55268c01b84dbe81cfc7e42f3f7681df6b5317a1 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<zstd.h>
int
main
(
void
)
{
ZSTD_CStream
*
cstream
;
cstream
=
ZSTD_createCStream
();
ZSTD_freeCStream
(
cstream
);
return
0
;
}