work around "signal loses thread pointer" issue with "approach 2"
[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 }