Sign in
fuchsia
/
zircon
/
13ee3dc5e4c46bf127977ad28645c47442ec517d
/
.
/
third_party
/
ulib
/
musl
/
src
/
stdlib
/
atof.c
blob: e99a001ec9a9e407251de088d6424e72d5b4e444 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
double
atof
(
const
char
*
s
)
{
return
strtod
(
s
,
0
);
}