summaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-10-25 22:03:20 +0000
committerJim Meyering <jim@meyering.net>1997-10-25 22:03:20 +0000
commitb3ab88e9707c43617efb5f85fd90de2f39bce6a6 (patch)
treecf9eddc67452f7e9542090ed09d37fb0082ccb2d /src/printf.c
parente2609be24831bb21b25cce09f3a0b3674287dfc0 (diff)
downloadcoreutils-b3ab88e9707c43617efb5f85fd90de2f39bce6a6.tar.xz
Remove old-style xmalloc and xrealloc decls.
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/printf.c b/src/printf.c
index 2ffedd062..c86108c9e 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -63,8 +63,6 @@ unsigned long int strtoul ();
(c) >= 'A' && (c) <= 'F' ? (c) - 'A' + 10 : (c) - '0')
#define octtobin(c) ((c) - '0')
-char *xmalloc ();
-
/* The value to return to the calling program. */
static int exit_status;