mirror of
https://github.com/fluencelabs/musl
synced 2025-06-02 09:31:33 +00:00
7 lines
74 B
C
7 lines
74 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
double atof(const char *s)
|
||
|
{
|
||
|
return strtod(s, 0);
|
||
|
}
|