summaryrefslogtreecommitdiff
path: root/libc/stdlib/strtold.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-08 19:08:43 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-08 19:08:43 +0000
commit9fda32a9dd08c5289baa3ae275467a66094f8522 (patch)
treea8fe25e48e555d4d22f6f5fdf5fd7ba9f6fe8364 /libc/stdlib/strtold.c
parentfb60c3098abd4d2b3f5235590276daf1e33930df (diff)
Use __strtod
Diffstat (limited to 'libc/stdlib/strtold.c')
-rw-r--r--libc/stdlib/strtold.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/strtold.c b/libc/stdlib/strtold.c
index 3848b782a..3ef1fc491 100644
--- a/libc/stdlib/strtold.c
+++ b/libc/stdlib/strtold.c
@@ -23,6 +23,8 @@
* to an internal conversion from a double to a long double, thereby losing
* tons of precision. But this is small, and works for now... */
+#define strtod __strtod
+
#include <stdlib.h>
long double strtold (const char *str, char **endptr)