mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
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
14 lines
255 B
C
14 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
|