shithub: riscv

ref: 518fd3ec8350a010e5ed6490e1106c66af8f4d02
dir: /sys/src/libc/port/atof.c/

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

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