git: 9front

ref: 5a17c16ccfb6e70271a6b656eb463a85f982078a
dir: /sys/src/libc/port/atof.c/

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

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