From: Jim Meyering Date: Sat, 17 Nov 2001 13:51:34 +0000 (+0000) Subject: Remove explicit declarations of xmalloc and xrealloc, X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=548d6eee7d88e61814f06f6e39162006918a1938;p=pspp Remove explicit declarations of xmalloc and xrealloc, Instead, include "xalloc.h". --- 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))