diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-25 18:13:53 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-25 18:13:53 +0000 |
commit | 67c5194a104e193ec26bad4013c2a9aa9d73312f (patch) | |
tree | 32b6129967a8b5c922b72843efc7fc6683287181 /coreutils/printf.c | |
parent | 7a5c6a597d9863949fff0a7044ac076aea2d41b2 (diff) | |
download | busybox-w32-67c5194a104e193ec26bad4013c2a9aa9d73312f.tar.gz busybox-w32-67c5194a104e193ec26bad4013c2a9aa9d73312f.tar.bz2 busybox-w32-67c5194a104e193ec26bad4013c2a9aa9d73312f.zip |
Some busybox updates. See the changelog for details if you care.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@338 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r-- | coreutils/printf.c | 2 |
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 | ||
124 | char *xmalloc (); | ||
125 | |||
126 | static double xstrtod __P ((char *s)); | 124 | static double xstrtod __P ((char *s)); |
127 | static int print_esc __P ((char *escstart)); | 125 | static int print_esc __P ((char *escstart)); |
128 | static int print_formatted __P ((char *format, int argc, char **argv)); | 126 | static int print_formatted __P ((char *format, int argc, char **argv)); |