From 4813a5100d70385118ee23b0171e14bc61c81f30 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 15 Jun 2009 09:50:54 +0200 Subject: libbb: stop using bb_strtod for now Signed-off-by: Denys Vlasenko --- libbb/bb_strtod.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libbb/bb_strtod.c') 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. -- cgit v1.2.3