xref: /freebsd/sys/contrib/xz-embedded/linux/lib/xz/xz_dec_syms.c (revision cd3a777bca91669fc4711d1eff66c40f3f62a223)
163dab8eeSAdrian Chadd /*
263dab8eeSAdrian Chadd  * XZ decoder module information
363dab8eeSAdrian Chadd  *
463dab8eeSAdrian Chadd  * Author: Lasse Collin <lasse.collin@tukaani.org>
563dab8eeSAdrian Chadd  *
663dab8eeSAdrian Chadd  * This file has been put into the public domain.
763dab8eeSAdrian Chadd  * You can do whatever you want with this file.
863dab8eeSAdrian Chadd  */
963dab8eeSAdrian Chadd 
1063dab8eeSAdrian Chadd #include <linux/module.h>
1163dab8eeSAdrian Chadd #include <linux/xz.h>
1263dab8eeSAdrian Chadd 
1363dab8eeSAdrian Chadd EXPORT_SYMBOL(xz_dec_init);
1463dab8eeSAdrian Chadd EXPORT_SYMBOL(xz_dec_reset);
1563dab8eeSAdrian Chadd EXPORT_SYMBOL(xz_dec_run);
1663dab8eeSAdrian Chadd EXPORT_SYMBOL(xz_dec_end);
1763dab8eeSAdrian Chadd 
18*cd3a777bSXin LI #ifdef CONFIG_XZ_DEC_MICROLZMA
19*cd3a777bSXin LI EXPORT_SYMBOL(xz_dec_microlzma_alloc);
20*cd3a777bSXin LI EXPORT_SYMBOL(xz_dec_microlzma_reset);
21*cd3a777bSXin LI EXPORT_SYMBOL(xz_dec_microlzma_run);
22*cd3a777bSXin LI EXPORT_SYMBOL(xz_dec_microlzma_end);
23*cd3a777bSXin LI #endif
24*cd3a777bSXin LI 
2563dab8eeSAdrian Chadd MODULE_DESCRIPTION("XZ decompressor");
26*cd3a777bSXin LI MODULE_VERSION("1.1");
2763dab8eeSAdrian Chadd MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
2863dab8eeSAdrian Chadd 
2963dab8eeSAdrian Chadd /*
3063dab8eeSAdrian Chadd  * This code is in the public domain, but in Linux it's simplest to just
3163dab8eeSAdrian Chadd  * say it's GPL and consider the authors as the copyright holders.
3263dab8eeSAdrian Chadd  */
3363dab8eeSAdrian Chadd MODULE_LICENSE("GPL");
34