Revert to 1.28c

This commit is contained in:
Robert Anisko
2001-08-25 13:13:14 +00:00
parent 667a550e7b
commit bbb5bcc6f8
24 changed files with 581 additions and 1251 deletions

View File

@@ -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_ */