diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-17 13:51:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-17 13:51:34 +0000 |
commit | 13d08934ba909407fbbd093553bbde5bcdb4fe09 (patch) | |
tree | 077dd2d59e15e66574a5c4559992c6aa09e91bcc /lib | |
parent | b150c16ebc3ded14e50d8ec793ebb19f681c20c7 (diff) | |
download | coreutils-13d08934ba909407fbbd093553bbde5bcdb4fe09.tar.xz |
Remove explicit declarations of xmalloc and xrealloc,
Instead, include "xalloc.h".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/readtokens.c | 3 |
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)) |