git: 9front

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

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

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