![]() |
|
|||
0001 // SPDX-License-Identifier: LGPL-2.1 0002 0003 #include <stdlib.h> 0004 #include <linux/zalloc.h> 0005 0006 void *zalloc(size_t size) 0007 { 0008 return calloc(1, size); 0009 } 0010 0011 void __zfree(void **ptr) 0012 { 0013 free(*ptr); 0014 *ptr = NULL; 0015 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |