1#ifndef __ZUTIL_H
2#define __ZUTIL_H
3
4/* necessary stuff to transplant crc32 and adler32 from zlib */
5#include <inttypes.h>
6#include <stddef.h>
7#include <sys/types.h>
8
9#define Z_NULL NULL
10#define OF(args) args
11#define ZEXPORT
12
13#endif
14
15