#include #include /* * Space allocation and freeing routines for use by zlib routines. */ void * zcalloc(notused, items, size) void *notused; u_int items, size; { return mallocarray(items, size, M_DEVBUF, M_NOWAIT); } void zcfree(notused, ptr) void *notused; void *ptr; { free(ptr, M_DEVBUF, 0); }