aboutsummaryrefslogtreecommitdiff
path: root/coreutils/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r--coreutils/printf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c
index 02d08118b..5be3a67cb 100644
--- a/coreutils/printf.c
+++ b/coreutils/printf.c
@@ -121,8 +121,6 @@
121#define hextobin(c) ((c)>='a'&&(c)<='f' ? (c)-'a'+10 : (c)>='A'&&(c)<='F' ? (c)-'A'+10 : (c)-'0') 121#define hextobin(c) ((c)>='a'&&(c)<='f' ? (c)-'a'+10 : (c)>='A'&&(c)<='F' ? (c)-'A'+10 : (c)-'0')
122#define octtobin(c) ((c) - '0') 122#define octtobin(c) ((c) - '0')
123 123
124char *xmalloc ();
125
126static double xstrtod __P ((char *s)); 124static double xstrtod __P ((char *s));
127static int print_esc __P ((char *escstart)); 125static int print_esc __P ((char *escstart));
128static int print_formatted __P ((char *format, int argc, char **argv)); 126static int print_formatted __P ((char *format, int argc, char **argv));