/* * XZ decoder module information * * Author: Lasse Collin <[email protected]> * * This file has been put into the public domain. * You can do whatever you want with this file. */ #include <linux/module.h> #include <linux/xz.h> EXPORT_SYMBOL(…); EXPORT_SYMBOL(…); EXPORT_SYMBOL(…); EXPORT_SYMBOL(…); #ifdef CONFIG_XZ_DEC_MICROLZMA EXPORT_SYMBOL(…); EXPORT_SYMBOL(…); EXPORT_SYMBOL(…); EXPORT_SYMBOL(…); #endif MODULE_DESCRIPTION(…) …; MODULE_VERSION(…) …; MODULE_AUTHOR(…) …; /* * This code is in the public domain, but in Linux it's simplest to just * say it's GPL and consider the authors as the copyright holders. */ MODULE_LICENSE(…) …;