From 13d08934ba909407fbbd093553bbde5bcdb4fe09 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 8830ed7..d8d5ec8 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.7.4