git: 9front

ref: 30596adb31eb04cb31ae4e011c229f85a6ec4db8
dir: /sys/src/libc/port/atof.c/

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

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