xref: /freebsd/sys/dev/zlib/zcalloc.h (revision 9729f076e4d93c5a37e78d427bfe0f1ab99bbcc6)
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 
12 void *zcalloc_waitok(void *, u_int, u_int);
13 void *zcalloc_nowait(void *, u_int, u_int);
14 #endif
15