* src/utils.h: Remove alloca_array

This commit is contained in:
Tim Rühsen 2020-02-14 16:09:36 +01:00
parent 28beee5e75
commit 7aac99d6e5

View File

@ -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;