diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-03-13 13:05:58 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-13 13:05:58 +0300 |
commit | cd80a8142efa3468c2cd9fb52845f334c3220d54 (patch) | |
tree | 919e88994bd3c09b34ce852d0a09bb0655d231d0 /include/linux/decompress/inflate.h | |
parent | 641cd4cfcdc71ce01535b31cc4d57d59a1fae1fc (diff) | |
parent | a98fe7f3425c6b4e90de16f8da63b0429a8fed08 (diff) | |
download | linux-cd80a8142efa3468c2cd9fb52845f334c3220d54.tar.xz |
Merge branch 'x86/core' into core/ipi
Diffstat (limited to 'include/linux/decompress/inflate.h')
-rw-r--r-- | include/linux/decompress/inflate.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/decompress/inflate.h b/include/linux/decompress/inflate.h new file mode 100644 index 000000000000..f9b06ccc3e5c --- /dev/null +++ b/include/linux/decompress/inflate.h @@ -0,0 +1,13 @@ +#ifndef INFLATE_H +#define INFLATE_H + +/* Other housekeeping constants */ +#define INBUFSIZ 4096 + +int gunzip(unsigned char *inbuf, int len, + int(*fill)(void*, unsigned int), + int(*flush)(void*, unsigned int), + unsigned char *output, + int *pos, + void(*error_fn)(char *x)); +#endif |