brintos

brintos / linux-shallow public Read only

0
0
Text · 197 B · 9c856d5 Raw
16 lines · c
1// SPDX-License-Identifier: LGPL-2.12 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}16