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-w32-4813a5100d70385118ee23b0171e14bc61c81f30.tar.gz
busybox-w32-4813a5100d70385118ee23b0171e14bc61c81f30.tar.bz2
busybox-w32-4813a5100d70385118ee23b0171e14bc61c81f30.zip
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 @@
12 12
13#define NOT_DIGIT(a) (((unsigned char)(a-'0')) > 9) 13#define NOT_DIGIT(a) (((unsigned char)(a-'0')) > 9)
14 14
15#if 0 // UNUSED
15double FAST_FUNC bb_strtod(const char *arg, char **endp) 16double FAST_FUNC bb_strtod(const char *arg, char **endp)
16{ 17{
17 double v; 18 double v;
@@ -36,6 +37,7 @@ double FAST_FUNC bb_strtod(const char *arg, char **endp)
36 } 37 }
37 return v; 38 return v;
38} 39}
40#endif
39 41
40#if 0 42#if 0
41/* String to timespec: "NNNN[.NNNNN]" -> struct timespec. 43/* String to timespec: "NNNN[.NNNNN]" -> struct timespec.