#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)))
/*---------------------.
for (_node = List; _node; _node = _next) \
{ \
_next = _node->next; \
- XFREE (_node); \
+ free (_node); \
} \
} while (0)