xref: /OK3568_Linux_fs/kernel/lib/xz/xz_dec_syms.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * XZ decoder module information
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Author: Lasse Collin <lasse.collin@tukaani.org>
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * This file has been put into the public domain.
7*4882a593Smuzhiyun  * You can do whatever you want with this file.
8*4882a593Smuzhiyun  */
9*4882a593Smuzhiyun 
10*4882a593Smuzhiyun #include <linux/module.h>
11*4882a593Smuzhiyun #include <linux/xz.h>
12*4882a593Smuzhiyun 
13*4882a593Smuzhiyun EXPORT_SYMBOL(xz_dec_init);
14*4882a593Smuzhiyun EXPORT_SYMBOL(xz_dec_reset);
15*4882a593Smuzhiyun EXPORT_SYMBOL(xz_dec_run);
16*4882a593Smuzhiyun EXPORT_SYMBOL(xz_dec_end);
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun MODULE_DESCRIPTION("XZ decompressor");
19*4882a593Smuzhiyun MODULE_VERSION("1.0");
20*4882a593Smuzhiyun MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun /*
23*4882a593Smuzhiyun  * This code is in the public domain, but in Linux it's simplest to just
24*4882a593Smuzhiyun  * say it's GPL and consider the authors as the copyright holders.
25*4882a593Smuzhiyun  */
26*4882a593Smuzhiyun MODULE_LICENSE("GPL");
27