git: 9front

ref: 3b2d76319d53a02b1336609e7f1311d927595ce4
dir: /sys/src/libc/port/atof.c/

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

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