From 21122bea01d6ece2fbc57319df255b3d6bf07687 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Fri, 18 Mar 2005 01:47:42 +0000 Subject: [PATCH] Add missing prototypes for fma() and fmaf(), and remove an inaccurate comment. --- lib/msun/src/math.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 5857148eccc..9b8f73cb978 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -225,8 +225,8 @@ double cbrt(double); double erf(double); double erfc(double); double expm1(double); +double fma(double, double, double); double hypot(double, double); -/* Our ilogb raises no exceptions; we side with IEEE-754R and C99, not POSIX */ int ilogb(double) __pure2; int (isinf)(double) __pure2; int (isnan)(double) __pure2; @@ -347,6 +347,7 @@ float scalbnf(float, int); float truncf(float); float fdimf(float, float); +float fmaf(float, float, float); float fmaxf(float, float) __pure2; float fminf(float, float) __pure2; #endif