make ldso asm more uniform with rest of codebase (no unnecessary suffixes)
[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 }