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