(CALLOC, MALLOC, REALLOC): Remove.

This commit is contained in:
Paul Eggert
2004-12-10 07:47:58 +00:00
parent 67961b9ea0
commit 8175837596

View 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)))
/*---------------------.