summaryrefslogtreecommitdiff
path: root/utils/fake_libc_include/zlib.h
blob: 57054118f518f072885f671ee0aff9060c68167b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef ZLIB_H
#define ZLIB_H

#include "_fake_defines.h"
#include "_fake_typedefs.h"

typedef int uInt;
typedef int uLong;
#if !defined(__MACTYPES__)
typedef int Byte;
#endif

typedef int Bytef;
typedef int charf;
typedef int intf;
typedef int uIntf;
typedef int uLongf;

typedef int voidpc;
typedef int voidpf;
typedef int voidp;

#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
#define Z_U4 int
#endif

typedef int z_crc_t;
typedef int z_size_t;

typedef int alloc_func;
typedef int free_func;

#endif