summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/jffs2/include/linux/zlib.h
blob: 9de691e8b34d37ceae43104ac0b89c7f5d7d3e84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __LINUX_ZLIB_H__
#define __LINUX_ZLIB_H__

#include <cyg/compress/zlib.h>

#define zlib_deflateInit(x,y) deflateInit(x,y)
#define zlib_deflate(x,y) deflate(x,y)
#define zlib_deflateEnd(x) deflateEnd(x)
#define zlib_inflateInit(x) inflateInit(x)
#define zlib_inflateInit2(x,y) inflateInit2(x,y)
#define zlib_inflate(x,y) inflate(x,y)
#define zlib_inflateEnd(x) inflateEnd(x)

#endif /* __LINUX_ZLIB_H__ */