shithub: riscv

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

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

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