]> git.saurik.com Git - bison.git/blobdiff - src/system.h
Use more STL like names: my_class instead of MyClass.
[bison.git] / src / system.h
index 62640c5cc9280b693556b18cc31e2588139e14cd..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)))
 
 
 /*---------------------.
@@ -205,7 +202,7 @@ do {                                                \
   for (_node = List; _node; _node = _next)     \
     {                                          \
       _next = _node->next;                     \
-      XFREE (_node);                           \
+      free (_node);                            \
     }                                          \
 } while (0)