summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/readtokens.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/readtokens.c b/lib/readtokens.c
index c1b80a24d..0bd669224 100644
--- 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))