Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
next
/
linux-next
/
stable
/
.
/
tools
/
build
/
feature
/
test-lzma.c
blob: b57103774e8ec106d650787373cbd52a646a990f [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<lzma.h>
int
main
(
void
)
{
lzma_stream strm
=
LZMA_STREAM_INIT
;
lzma_ret ret
;
ret
=
lzma_stream_decoder
(&
strm
,
UINT64_MAX
,
LZMA_CONCATENATED
);
return
ret
?
-
1
:
0
;
}