mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
7f7c536f23
Eroding a bit more the tools/perf/util/util.h hodpodge header. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-natazosyn9rwjka25tvcnyi0@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
16 lines
197 B
C
16 lines
197 B
C
// SPDX-License-Identifier: LGPL-2.1
|
|
|
|
#include <stdlib.h>
|
|
#include <linux/zalloc.h>
|
|
|
|
void *zalloc(size_t size)
|
|
{
|
|
return calloc(1, size);
|
|
}
|
|
|
|
void __zfree(void **ptr)
|
|
{
|
|
free(*ptr);
|
|
*ptr = NULL;
|
|
}
|