The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/xz-embedded/linux/lib/xz/xz_dec_syms.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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 
   10 #include <linux/module.h>
   11 #include <linux/xz.h>
   12 
   13 EXPORT_SYMBOL(xz_dec_init);
   14 EXPORT_SYMBOL(xz_dec_reset);
   15 EXPORT_SYMBOL(xz_dec_run);
   16 EXPORT_SYMBOL(xz_dec_end);
   17 
   18 #ifdef CONFIG_XZ_DEC_MICROLZMA
   19 EXPORT_SYMBOL(xz_dec_microlzma_alloc);
   20 EXPORT_SYMBOL(xz_dec_microlzma_reset);
   21 EXPORT_SYMBOL(xz_dec_microlzma_run);
   22 EXPORT_SYMBOL(xz_dec_microlzma_end);
   23 #endif
   24 
   25 MODULE_DESCRIPTION("XZ decompressor");
   26 MODULE_VERSION("1.1");
   27 MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
   28 
   29 /*
   30  * This code is in the public domain, but in Linux it's simplest to just
   31  * say it's GPL and consider the authors as the copyright holders.
   32  */
   33 MODULE_LICENSE("GPL");

Cache object: 8b0783a654c9bfb4d20732671cc98fac


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.