From 3ca95890a6a6440e3eb0d85682e612cbab83b44c Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 5 Mar 2018 20:24:30 +0000 Subject: [PATCH] math,h: Fix mismatched atof declaration --- Library/include/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1