a15cb219c6
This allows kernel code to reuse zlib's implementation. PR: 229763 Reviewed by: Yoshihiro Ota <ota j email ne jp> Relnotes: yes Differential Revision: https://reviews.freebsd.org/D21156
15 lines
255 B
C
15 lines
255 B
C
/*
|
|
* This file is in the public domain.
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _DEV_ZLIB_ZCALLOC_
|
|
#define _DEV_ZLIB_ZCALLOC_
|
|
|
|
#include <contrib/zlib/zutil.h>
|
|
#undef local
|
|
|
|
void *zcalloc_waitok(void *, u_int, u_int);
|
|
void *zcalloc_nowait(void *, u_int, u_int);
|
|
#endif
|