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
mm, oom: do not rely on TIF_MEMDIE for memory reserves access
[linux/fpc-iii.git]
/
tools
/
build
/
feature
/
test-lzma.c
blob
95adc8ced3dd0c6c96f35728f2b65ff30150d75d
1
#include <lzma.h>
2
3
int
main
(
void
)
4
{
5
lzma_stream strm
=
LZMA_STREAM_INIT
;
6
int
ret
;
7
8
ret
=
lzma_stream_decoder
(&
strm
,
UINT64_MAX
,
LZMA_CONCATENATED
);
9
return
ret
? -
1
:
0
;
10
}