xref: /freebsd/sys/dev/zlib/zcalloc.h (revision 54e9e4e72d711fb41f88f793f6c64df1126112f9)
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 void * zcalloc_waitok(void *nil, u_int items, u_int size);
10 void * zcalloc_nowait(void *nil, u_int items, u_int size);
11 void zcfree(void *nil, void *ptr);
12 
13 #endif
14