You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
447 B
20 lines
447 B
/*
|
|
* linux/lib/zlib_inflate/inflate_syms.c
|
|
*
|
|
* Exported symbols for the inflate functionality.
|
|
*
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/zlib.h>
|
|
|
|
EXPORT_SYMBOL(zlib_inflate_workspacesize);
|
|
EXPORT_SYMBOL(zlib_inflate);
|
|
EXPORT_SYMBOL(zlib_inflateInit2);
|
|
EXPORT_SYMBOL(zlib_inflateEnd);
|
|
EXPORT_SYMBOL(zlib_inflateReset);
|
|
EXPORT_SYMBOL(zlib_inflateIncomp);
|
|
EXPORT_SYMBOL(zlib_inflate_blob);
|
|
MODULE_LICENSE("GPL");
|
|
|