Declare xmalloc, xrealloc rather than including xalloc.h.
authorJim Meyering <jim@meyering.net>
Mon, 7 Aug 1995 22:21:03 +0000 (22:21 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 7 Aug 1995 22:21:03 +0000 (22:21 +0000)
lib/readtokens.c

index c1b80a24d1638093b5933f96f7418dfbe3b80396..0bd66922461119c4b6bb26996bcece2ad31ae8bc 100644 (file)
@@ -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))