fix incorrect overflow errors on strtoul, etc.
[musl] / src / stdlib / strtof.c
1 #include <stdlib.h>
2
3 float strtof(const char *s, char **p)
4 {
5         return strtold(s, p);
6 }