mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 12:01:35 +00:00
7 lines
86 B
C
7 lines
86 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
float strtof(const char *s, char **p)
|
||
|
{
|
||
|
return strtold(s, p);
|
||
|
}
|