shithub: riscv

ref: 7a447151ae273bf08e596f57b7b9aaa1de11da33
dir: /sys/src/libc/port/atof.c/

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

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