]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/zlib/zcalloc.h
Allow Kernel to link in both legacy libkern/zlib and new sys/contrib/zlib,
[FreeBSD/FreeBSD.git] / sys / dev / zlib / zcalloc.h
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