1/*
2 * This file is in the public domain.
3 * $FreeBSD$
4 */
5
6#ifndef _DEV_ZLIB_ZCALLOC_
7#define _DEV_ZLIB_ZCALLOC_
8
9#include <contrib/zlib/zutil.h>
10#undef local
11
12void *zcalloc_waitok(void *, u_int, u_int);
13void *zcalloc_nowait(void *, u_int, u_int);
14#endif
15