git: 9front

ref: a503d729e08c8a11eaaae72146ba6bf8a9b0d708
dir: /sys/src/libc/port/atof.c/

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

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