diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-27 08:14:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-27 08:14:39 +0000 |
commit | 355848c4c8897314bbc0fea8ba71fa6adfc39665 (patch) | |
tree | 3869f67332bf47eeb618b83f9008e249eff2998c /src | |
parent | f2701c57580dc56ff8774b31640cb00a22217218 (diff) | |
download | coreutils-355848c4c8897314bbc0fea8ba71fa6adfc39665.tar.xz |
Include "c-strtod.h".
(scan_double_arg): Update xstrtod call to include new argument, c_strtod.
Diffstat (limited to 'src')
-rw-r--r-- | src/seq.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,6 +24,7 @@ #include <sys/types.h> #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); |