mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	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>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 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;
 | 
						|
}
 |