]> granicus.if.org Git - graphviz/commitdiff
ast: remove now unused 'oldof'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 9 Jul 2022 16:57:22 +0000 (09:57 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 16 Jul 2022 01:53:14 +0000 (18:53 -0700)
lib/ast/ast.h

index 27783c54062d97e85f18d474a3ecd9e26db4631f..f04d194d8c05f7f38f4ed2f970598928a429551e 100644 (file)
@@ -52,7 +52,6 @@ extern "C" {
 
 #define elementsof(x)   (sizeof(x)/sizeof(x[0]))
 #define newof(p,t,n,x)  ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
-#define oldof(p,t,n,x)  ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)malloc(sizeof(t)*(n)+(x)))
 #define streq(a,b)  (!strcmp(a,b))
 #define strneq(a,b,n)     (!strncmp(a,b,n))
 #define memzero(b,n)    memset(b,0,n)