From 5a8590a190da008e2b1db7081738ce9440ffdf2d Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 4 Sep 2022 12:37:40 -0700 Subject: [PATCH] common: remove now unused 'N_GGNEW' --- lib/common/memory.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/common/memory.h b/lib/common/memory.h index 459f1928c..06a6b47de 100644 --- a/lib/common/memory.h +++ b/lib/common/memory.h @@ -21,7 +21,6 @@ extern "C" { #define GNEW(t) (t*)gmalloc(sizeof(t)) #define N_GNEW(n,t) (t*)gcalloc((n),sizeof(t)) -#define N_GGNEW(n,t) (t*)calloc((n),sizeof(t)) #define ALLOC(size,ptr,type) (ptr? (type*)grealloc(ptr,(size)*sizeof(type)):(type*)gmalloc((size)*sizeof(type))) #define RALLOC(size,ptr,type) ((type*)grealloc(ptr,(size)*sizeof(type))) #define ZALLOC(size,ptr,type,osize) (ptr? (type*)zrealloc(ptr,size,sizeof(type),osize):(type*)zmalloc((size)*sizeof(type))) -- 2.40.0