changeset 3622:7f1ff9bec452

Remove explicit declarations of xmalloc and xrealloc, Instead, include "xalloc.h".
author Jim Meyering <jim@meyering.net>
date Sat, 17 Nov 2001 13:51:34 +0000
parents 56f442359b0d
children e5a707f3f41a
files lib/readtokens.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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))