repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
build
/
feature
/
test-libzstd.c
blob
55268c01b84dbe81cfc7e42f3f7681df6b5317a1
1
// SPDX-License-Identifier: GPL-2.0
2
#include <zstd.h>
3
4
int
main
(
void
)
5
{
6
ZSTD_CStream
*
cstream
;
7
8
cstream
=
ZSTD_createCStream
();
9
ZSTD_freeCStream
(
cstream
);
10
11
return
0
;
12
}