summaryrefslogtreecommitdiff
path: root/tools/include/linux/zalloc.h
blob: 81099c84043f6b782af7e954896584a7bff62c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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
a4bf72df'>Merge git://git.infradead.org/mtd-2.6Linus Torvalds 2011-09-11mtd: ATMEL, AVR32: inline nand partition table accessDmitry Eremin-Solenikov 2011-08-08ARM: gpio: convert includes of mach/gpio.h and asm/gpio.h to linux/gpio.hRussell King 2011-07-28at91: factorize at91 interrupts init to socJean-Christophe PLAGNIOL-VILLARD 2011-07-28at91: introduce commom AT91_BASE_SYSJean-Christophe PLAGNIOL-VILLARD 2011-05-25at91rm9200: introduce at91rm9200_set_type to specficy cpu packageJean-Christophe PLAGNIOL-VILLARD 2011-05-25at91: drop boot_params and PLAT_PHYS_OFFSETJean-Christophe PLAGNIOL-VILLARD 2011-05-25at91: fix map_io init usageJean-Christophe PLAGNIOL-VILLARD 2010-10-20arm: remove machine_desc.io_pg_offst and .phys_ioNicolas Pitre