toaruos/libc/stdlib/atof.c
2018-06-25 12:11:33 +09:00

8 lines
107 B
C

/* Really bad atof */
#include <stdlib.h>
double atof(const char * nptr) {
return strtod(nptr, NULL);
}