summaryrefslogtreecommitdiff
path: root/lib/readtokens.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-17 13:51:34 +0000
committerJim Meyering <jim@meyering.net>2001-11-17 13:51:34 +0000
commit13d08934ba909407fbbd093553bbde5bcdb4fe09 (patch)
tree077dd2d59e15e66574a5c4559992c6aa09e91bcc /lib/readtokens.c
parentb150c16ebc3ded14e50d8ec793ebb19f681c20c7 (diff)
downloadcoreutils-13d08934ba909407fbbd093553bbde5bcdb4fe09.tar.xz
Remove explicit declarations of xmalloc and xrealloc,
Instead, include "xalloc.h".
Diffstat (limited to 'lib/readtokens.c')
-rw-r--r--lib/readtokens.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/readtokens.c b/lib/readtokens.c
index 8830ed771..d8d5ec8b7 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))