lang-bootstrap/05/musl-0.6.0/src/stdlib/strtof.c

7 lines
86 B
C
Raw Normal View History

2022-02-20 13:18:21 -08:00
#include <stdlib.h>
float strtof(const char *s, char **p)
{
return strtold(s, p);
}