| 1 | #ifndef ISSUE_18378_ZLIB_COMPAT_H |
| 2 | #define ISSUE_18378_ZLIB_COMPAT_H |
| 3 | |
| 4 | typedef void *voidpf; |
| 5 | typedef unsigned int uInt; |
| 6 | |
| 7 | typedef struct issue_18378_z_stream_s { |
| 8 | int dummy; |
| 9 | } z_stream; |
| 10 | |
| 11 | typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size); |
| 12 | |
| 13 | #endif |
| 14 | |