diff options
Diffstat (limited to 'libbb/bb_strtod.c')
-rw-r--r-- | libbb/bb_strtod.c | 2 |
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. |