xref: /aosp_15_r20/external/musl/src/stdlib/atof.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <stdlib.h>
2 
atof(const char * s)3 double atof(const char *s)
4 {
5 	return strtod(s, 0);
6 }
7