Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fa58e6e9000c1cc76a7a0c06ea3e68d728cc4247 12 lines 252 B view raw
1// SPDX-License-Identifier: LGPL-2.1 2#ifndef __TOOLS_LINUX_ZALLOC_H 3#define __TOOLS_LINUX_ZALLOC_H 4 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_H