math: use 0x1p-120f and 0x1p120f for tiny and huge values
[musl] / src / stdlib / atof.c
1 #include <stdlib.h>
2
3 double atof(const char *s)
4 {
5         return strtod(s, 0);
6 }