summaryrefslogtreecommitdiff
path: root/userland/libc/stdlib/atof.c
blob: 8524f8b8400585df754d73c687cd5661dc1829a8 (plain)
1
2
3
4
5
#include <stdlib.h>

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