aboutsummaryrefslogtreecommitdiff
path: root/libbb/bb_strtod.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-06-15 09:50:54 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-06-15 09:50:54 +0200
commit4813a5100d70385118ee23b0171e14bc61c81f30 (patch)
treeac753e330f1cab7ab0be5ea87dafbde4d9103e8e /libbb/bb_strtod.c
parentcd3dd42c28832da92ee0d4d3afe7cf722e38f80c (diff)
downloadbusybox-4813a5100d70385118ee23b0171e14bc61c81f30.tar.gz
libbb: stop using bb_strtod for now
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/bb_strtod.c')
-rw-r--r--libbb/bb_strtod.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/bb_strtod.c b/libbb/bb_strtod.c
index 39bdeb5e5..1e9671029 100644
--- a/libbb/bb_strtod.c
+++ b/libbb/bb_strtod.c
@@ -12,6 +12,7 @@
#define NOT_DIGIT(a) (((unsigned char)(a-'0')) > 9)
+#if 0 // UNUSED
double FAST_FUNC bb_strtod(const char *arg, char **endp)
{
double v;
@@ -36,6 +37,7 @@ double FAST_FUNC bb_strtod(const char *arg, char **endp)
}
return v;
}
+#endif
#if 0
/* String to timespec: "NNNN[.NNNNN]" -> struct timespec.