fix x86_64 user.h (previously was just a copy of i386)
[musl] / src / stdlib / strtod.c
1 #include <stdlib.h>
2
3 double strtod(const char *s, char **p)
4 {
5         return strtold(s, p);
6 }