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