From 0ee6b616171a138ce4226f10b15a2f00e131c589 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 7 Aug 1995 22:21:03 +0000 Subject: [PATCH] Declare xmalloc, xrealloc rather than including xalloc.h. --- lib/readtokens.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/readtokens.c b/lib/readtokens.c index c1b80a24d..0bd669224 100644 --- a/lib/readtokens.c +++ b/lib/readtokens.c @@ -49,7 +49,8 @@ #endif /* not STDC_HEADERS and not HAVE_STRING_H */ #include "readtokens.h" -#include "xalloc.h" +void *xmalloc (); +void *xrealloc (); #define STREQ(a,b) ((a) == (b) || ((a) && (b) && *(a) == *(b) \ && strcmp(a, b) == 0)) -- 2.11.0