Sign in
mojo
/
mojo-tools
/
711b2f1e6d912e6514b3a4f74068104ddd79a4b5
/
.
/
fusl
/
src
/
stdlib
/
atof.c
blob: f7fcd8266eb4287bcd1d4bb2139def4e52f65301 [
file
]
#include
<stdlib.h>
double
atof
(
const
char
*
s
)
{
return
strtod
(
s
,
0
);
}