From: Alan Cox Date: Fri, 23 Feb 2018 22:56:10 +0000 (+0000) Subject: math.h: correct prototype of powf X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7bc8dd4bd2ec15ca9a79d33d39a9ad031abe2c65;p=FUZIX.git math.h: correct prototype of powf --- diff --git a/Library/include/math.h b/Library/include/math.h index baf5e60e..2e4aad6d 100644 --- a/Library/include/math.h +++ b/Library/include/math.h @@ -214,7 +214,7 @@ extern float modff(float, float *); extern float nanf(const char *__tagp); extern float nearbyintf(float); extern float nextafterf(float, float); -extern float powf(float); +extern float powf(float, float); extern float remainderf(float, float); extern float remquof(float, float, int *); extern float rintf(float);