]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libc/port/atof.c
libregexp: improve the transition to next available thread, instruction, and generation
[plan9front.git] / sys / src / libc / port / atof.c
1 #include <u.h>
2 #include <libc.h>
3
4 double
5 atof(char *cp)
6 {
7         return strtod(cp, 0);
8 }