xref: /freebsd/sys/dev/zlib/zcalloc.h (revision 6132212808e8dccedc9e5d85fea4390c2f38059a)
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