git: 9front

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

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

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