blob: e99a001ec9a9e407251de088d6424e72d5b4e444 [file] [log] [blame]
#include <stdlib.h>
double atof(const char* s) {
return strtod(s, 0);
}