brintos

brintos / linux-shallow public Read only

0
0
Text · 252 B · 81099c8 Raw
13 lines · c
1// SPDX-License-Identifier: LGPL-2.12#ifndef __TOOLS_LINUX_ZALLOC_H3#define __TOOLS_LINUX_ZALLOC_H4 5#include <stddef.h>6 7void *zalloc(size_t size);8void __zfree(void **ptr);9 10#define zfree(ptr) __zfree((void **)(ptr))11 12#endif // __TOOLS_LINUX_ZALLOC_H13