f7fcd8266eb4287bcd1d4bb2139def4e52f65301
[musl] / atof.c
1 #include <stdlib.h>
2
3 double atof(const char *s)
4 {
5         return strtod(s, 0);
6 }