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