shithub: riscv

ref: 0fc2adb43dc8be67b6eca49e3e28339367a01246
dir: /sys/src/libc/port/atof.c/

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

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