From 87efdaf0a7a804cda24749246b26772bbdcaef5e Mon Sep 17 00:00:00 2001 From: Oleksandr Natalenko Date: Mon, 2 Jan 2017 20:54:08 +0100 Subject: utils: provide array allocation wrapper This will be used for allocating memory for arrays in heap instead of keeping them on stack. Signed-off-by: Oleksandr Natalenko Signed-off-by: Florian Westphal --- include/utils.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/utils.h') diff --git a/include/utils.h b/include/utils.h index bb58ba42..3199388a 100644 --- a/include/utils.h +++ b/include/utils.h @@ -138,6 +138,7 @@ extern void __memory_allocation_error(const char *filename, uint32_t line) __nor extern void xfree(const void *ptr); extern void *xmalloc(size_t size); +extern void *xmalloc_array(size_t nmemb, size_t size); extern void *xrealloc(void *ptr, size_t size); extern void *xzalloc(size_t size); extern char *xstrdup(const char *s); -- cgit v1.2.3