git: 9front

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

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

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