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