xz_dec_syms.c 664 B

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