diff options
Diffstat (limited to 'kernel/include/linux/decompress/unlzo.h')
-rw-r--r-- | kernel/include/linux/decompress/unlzo.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/include/linux/decompress/unlzo.h b/kernel/include/linux/decompress/unlzo.h new file mode 100644 index 000000000..af18f95d6 --- /dev/null +++ b/kernel/include/linux/decompress/unlzo.h @@ -0,0 +1,10 @@ +#ifndef DECOMPRESS_UNLZO_H +#define DECOMPRESS_UNLZO_H + +int unlzo(unsigned char *inbuf, long len, + long (*fill)(void*, unsigned long), + long (*flush)(void*, unsigned long), + unsigned char *output, + long *pos, + void(*error)(char *x)); +#endif |