6 lines
86 B
C
6 lines
86 B
C
#include <stdlib.h>
|
|
|
|
float strtof(const char *s, char **p)
|
|
{
|
|
return strtold(s, p);
|
|
}
|