git: 9front

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

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

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