usb/renesas_usbhs: free uep on removal
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / lib / xz / xz_dec_syms.c
blob32eb3c03aede9191bde909e9dfe07f23bea80118
1 /*
2 * XZ decoder module information
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
10 #include <linux/module.h>
11 #include <linux/xz.h>
13 EXPORT_SYMBOL(xz_dec_init);
14 EXPORT_SYMBOL(xz_dec_reset);
15 EXPORT_SYMBOL(xz_dec_run);
16 EXPORT_SYMBOL(xz_dec_end);
18 MODULE_DESCRIPTION("XZ decompressor");
19 MODULE_VERSION("1.0");
20 MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
23 * This code is in the public domain, but in Linux it's simplest to just
24 * say it's GPL and consider the authors as the copyright holders.
26 MODULE_LICENSE("GPL");