diff options
Diffstat (limited to 'strings')
-rw-r--r-- | strings/strtod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/strtod.c b/strings/strtod.c index 63633b6808f..5b3be40cbf8 100644 --- a/strings/strtod.c +++ b/strings/strtod.c @@ -135,6 +135,6 @@ done: double my_atof(const char *nptr) { - return (strtod(nptr, 0)); + return (my_strtod(nptr, 0)); } |