From c2bd0b680667c7ec4956552f75d9ff7d040ac941 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 23 Mar 2021 13:50:02 +0100 Subject: timeout,top,watch,ping: parse NN.N fractional duration in locales with other separators Signed-off-by: Denys Vlasenko --- miscutils/dc.c | 1 + 1 file changed, 1 insertion(+) (limited to 'miscutils') diff --git a/miscutils/dc.c b/miscutils/dc.c index e94dc39e0..42baa67ad 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -229,6 +229,7 @@ static void stack_machine(const char *argument) const struct op *o; next: +//TODO: needs setlocale(LC_NUMERIC, "C")? number = strtod(argument, &end); if (end != argument) { argument = end; -- cgit v1.2.3