git: 9front

ref: 4f66674443c6d9c28ed4a65d6a30dbceb6e7f10a
dir: /sys/src/libc/port/atof.c/

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

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