diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 19:08:43 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 19:08:43 +0000 |
commit | 9fda32a9dd08c5289baa3ae275467a66094f8522 (patch) | |
tree | a8fe25e48e555d4d22f6f5fdf5fd7ba9f6fe8364 /libc/stdlib/stdlib.c | |
parent | fb60c3098abd4d2b3f5235590276daf1e33930df (diff) |
Use __strtod
Diffstat (limited to 'libc/stdlib/stdlib.c')
-rw-r--r-- | libc/stdlib/stdlib.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/stdlib/stdlib.c b/libc/stdlib/stdlib.c index b1dd98068..3b7d37ccb 100644 --- a/libc/stdlib/stdlib.c +++ b/libc/stdlib/stdlib.c @@ -201,9 +201,13 @@ _stdlib_wcsto_ll(register const wchar_t * __restrict str, /**********************************************************************/ #ifdef L_atof +extern double __strtod (__const char *__restrict __nptr, + char **__restrict __endptr) + __THROW __nonnull ((1)) __wur attribute_hidden; + double atof(const char *nptr) { - return strtod(nptr, (char **) NULL); + return __strtod(nptr, (char **) NULL); } #endif |