summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/atof.c
blob: aff6634bdd4cb663cfabaf187903759c86a82361 (plain)
1
2
3
4
5
6
7
8
#include "stddef.h" // for NULL

#include <stdlib.h> // for strtod, atof

double atof(const char *str)
{
	return strtod(str, (char **)NULL);
}