From 548d6eee7d88e61814f06f6e39162006918a1938 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 17 Nov 2001 13:51:34 +0000 Subject: [PATCH] Remove explicit declarations of xmalloc and xrealloc, Instead, include "xalloc.h". --- lib/readtokens.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/readtokens.c b/lib/readtokens.c index 8830ed7713..d8d5ec8b70 100644 --- a/lib/readtokens.c +++ b/lib/readtokens.c @@ -50,8 +50,7 @@ #include "readtokens.h" #include "unlocked-io.h" -void *xmalloc (); -void *xrealloc (); +#include "xalloc.h" #define STREQ(a,b) ((a) == (b) || ((a) && (b) && *(a) == *(b) \ && strcmp(a, b) == 0)) -- 2.30.2