Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / tools / build / feature / test-lzma.c
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 }
This page took 0.038725 seconds and 6 git commands to generate.