summaryrefslogtreecommitdiffstats
path: root/include/linux/decompress/unlzma.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/decompress/unlzma.h')
-rw-r--r--include/linux/decompress/unlzma.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/decompress/unlzma.h b/include/linux/decompress/unlzma.h
new file mode 100644
index 000000000..1c930f125
--- /dev/null
+++ b/include/linux/decompress/unlzma.h
@@ -0,0 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef DECOMPRESS_UNLZMA_H
+#define DECOMPRESS_UNLZMA_H
+
+int unlzma(unsigned char *, long,
+ long (*fill)(void*, unsigned long),
+ long (*flush)(void*, unsigned long),
+ unsigned char *output,
+ long *posp,
+ void(*error)(char *x)
+ );
+
+#endif