git: 9front

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

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

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