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 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}