Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.4-rc3 10 lines 175 B view raw
1#include <lzma.h> 2 3int 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}