git: 9front

ref: 3a81671b22baf51644f12a844414bba7d71217c4
dir: /sys/src/libc/port/atof.c/

View raw version
#include <u.h>
#include <libc.h>

double
atof(char *cp)
{
	return strtod(cp, 0);
}