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.12-rc6 12 lines 270 B view raw
1#ifndef PERF_COMPRESS_H 2#define PERF_COMPRESS_H 3 4#ifdef HAVE_ZLIB_SUPPORT 5int gzip_decompress_to_file(const char *input, int output_fd); 6#endif 7 8#ifdef HAVE_LZMA_SUPPORT 9int lzma_decompress_to_file(const char *input, int output_fd); 10#endif 11 12#endif /* PERF_COMPRESS_H */