]> git.saurik.com Git - bison.git/commitdiff
(CALLOC, MALLOC, REALLOC): Remove.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Dec 2004 07:47:58 +0000 (07:47 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Dec 2004 07:47:58 +0000 (07:47 +0000)
src/system.h

index 10abfef590786f47bde47b9f380d2aa645d1c3ca..23fe5f551c26432c810cb82df4863f2142f97639 100644 (file)
@@ -54,9 +54,6 @@ typedef size_t uintptr_t;
 #endif
 
 #include <xalloc.h>
-#define CALLOC(P, N) ((P) = xcalloc (N, sizeof *(P)))
-#define MALLOC(P, N) ((P) = xnmalloc (N, sizeof *(P)))
-#define REALLOC(P, N) ((P) = xnrealloc (P, N, sizeof *(P)))
 
 
 /*---------------------.