changeset 477:c30155ecefad

Declare xmalloc, xrealloc rather than including xalloc.h.
author Jim Meyering <jim@meyering.net>
date Mon, 07 Aug 1995 22:21:03 +0000
parents 0c45beac2dc5
children 2aec40b61d61
files lib/readtokens.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))