From: Alan Cox Date: Mon, 5 Mar 2018 20:24:30 +0000 (+0000) Subject: math,h: Fix mismatched atof declaration X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3ca95890a6a6440e3eb0d85682e612cbab83b44c;p=FUZIX.git math,h: Fix mismatched atof declaration --- diff --git a/Library/include/math.h b/Library/include/math.h index 3f4fd99b..772a3bf7 100644 --- a/Library/include/math.h +++ b/Library/include/math.h @@ -15,7 +15,7 @@ extern double acos(double); extern double asin(double); extern double atan(double); extern double atan2(double, double); -extern double atof(char *); +extern double atof(const char *); extern double cbrt(double); extern double ceil(double); extern double copysign(double, double);