use -L/...../ -lgcc instead of /...../libgcc.a in musl-gcc wrapper
[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 }