git: 9front

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

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

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