mirror of
https://github.com/opnsense/src.git
synced 2026-04-14 13:57:02 -04:00
13 lines
242 B
C
13 lines
242 B
C
/*
|
|
* This file is in the public domain.
|
|
*/
|
|
|
|
#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
|