From d0e2b9c466c5a5d11a1422f4a635b4bcb1eaadcd 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 c1b80a2..0bd6692 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.7.4