Sign in
cobalt
/
cobalt
/
6c50c1c49c8a70d13dcb47674d70da002e02256c
/
.
/
third_party
/
musl
/
src
/
stdlib
/
atof.c
blob: f7fcd8266eb4287bcd1d4bb2139def4e52f65301 [
file
]
#include
<stdlib.h>
double
atof
(
const
char
*
s
)
{
return
strtod
(
s
,
0
);
}