lang-bootstrap/05/musl-0.6.0/src/stdlib/strtof.c
2022-02-20 13:18:21 -08:00

6 lines
86 B
C

#include <stdlib.h>
float strtof(const char *s, char **p)
{
return strtold(s, p);
}