From 355848c4c8897314bbc0fea8ba71fa6adfc39665 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 27 Nov 2003 08:14:39 +0000 Subject: [PATCH] Include "c-strtod.h". (scan_double_arg): Update xstrtod call to include new argument, c_strtod. --- src/seq.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/seq.c b/src/seq.c index d7a306887a..f1f24a22b1 100644 --- a/src/seq.c +++ b/src/seq.c @@ -24,6 +24,7 @@ #include #include "system.h" +#include "c-strtod.h" #include "error.h" #include "xstrtol.h" #include "xstrtod.h" @@ -113,7 +114,7 @@ scan_double_arg (const char *arg) { double ret_val; - if (xstrtod (arg, NULL, &ret_val)) + if (xstrtod (arg, NULL, &ret_val, c_strtod)) { error (0, 0, _("invalid floating point argument: %s"), arg); usage (EXIT_FAILURE); -- 2.47.2