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