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 309a29b5965a0b2f36b3e245213eb43300a89ac2 15 lines 197 B view raw
1// SPDX-License-Identifier: LGPL-2.1 2 3#include <stdlib.h> 4#include <linux/zalloc.h> 5 6void *zalloc(size_t size) 7{ 8 return calloc(1, size); 9} 10 11void __zfree(void **ptr) 12{ 13 free(*ptr); 14 *ptr = NULL; 15}