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/strtof.c | |
parent | fb60c3098abd4d2b3f5235590276daf1e33930df (diff) |
Use __strtod
Diffstat (limited to 'libc/stdlib/strtof.c')
-rw-r--r-- | libc/stdlib/strtof.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/strtof.c b/libc/stdlib/strtof.c index a5180677c..d25a67d05 100644 --- a/libc/stdlib/strtof.c +++ b/libc/stdlib/strtof.c @@ -23,6 +23,8 @@ * to an internal conversion from a double to a float, thereby wasting a bunch * of precision. But this is small, and works for now... */ +#define strtod __strtod + #include <stdlib.h> float strtof (const char *str, char **endptr) |