plan9front/sys/src/libc/port/atof.c

9 lines
83 B
C

#include <u.h>
#include <libc.h>
double
atof(char *cp)
{
return strtod(cp, 0);
}