From 7aac99d6e5c472f798d583902fd4ec8591243f76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Fri, 14 Feb 2020 16:09:36 +0100 Subject: [PATCH] * src/utils.h: Remove alloca_array --- src/utils.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils.h b/src/utils.h index 370d6b54..64ad198f 100644 --- a/src/utils.h +++ b/src/utils.h @@ -51,8 +51,6 @@ as that of the covered work. */ #define xnew_array(type, len) (xmalloc ((len) * sizeof (type))) #define xnew0_array(type, len) (xcalloc ((len), sizeof (type))) -#define alloca_array(type, size) ((type *) alloca ((size) * sizeof (type))) - #define xfree(p) do { free ((void *) (p)); p = NULL; } while (0) struct hash_table;