mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +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>
12 lines
252 B
C
12 lines
252 B
C
// SPDX-License-Identifier: LGPL-2.1
|
|
#ifndef __TOOLS_LINUX_ZALLOC_H
|
|
#define __TOOLS_LINUX_ZALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *zalloc(size_t size);
|
|
void __zfree(void **ptr);
|
|
|
|
#define zfree(ptr) __zfree((void **)(ptr))
|
|
|
|
#endif // __TOOLS_LINUX_ZALLOC_H
|