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.
18 lines
377 B
18 lines
377 B
/* |
|
* linux/lib/zlib_deflate/deflate_syms.c |
|
* |
|
* Exported symbols for the deflate functionality. |
|
* |
|
*/ |
|
|
|
#include <linux/module.h> |
|
#include <linux/init.h> |
|
|
|
#include <linux/zlib.h> |
|
|
|
EXPORT_SYMBOL(zlib_deflate_workspacesize); |
|
EXPORT_SYMBOL(zlib_deflate); |
|
EXPORT_SYMBOL(zlib_deflateInit2); |
|
EXPORT_SYMBOL(zlib_deflateEnd); |
|
EXPORT_SYMBOL(zlib_deflateReset); |
|
MODULE_LICENSE("GPL");
|
|
|