X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/83cd972a1a7f536a8be5c0e7504768c3fb7298f4..2946869a2889640d6605fbac24ae9531db12b452:/lib/xalloc.h diff --git a/lib/xalloc.h b/lib/xalloc.h index c84bccb8..098a6c2e 100644 --- a/lib/xalloc.h +++ b/lib/xalloc.h @@ -83,9 +83,5 @@ char *xstrdup PARAMS ((const char *str)); /* Return a malloc'ed copy of SRC. */ # define CLONE(Src) CCLONE (Src, 1) -/* Wrappers for standard functions. */ -#define CALLOC(t, n) ((t *) calloc (sizeof (t), (n))) -#define MALLOC(t, n) ((t *) xmalloc (sizeof (t) * (n))) -#define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n))) #endif /* !XALLOC_H_ */