git: 9front

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

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

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