From 27b3a815cbdc171aa548ebf00a254715d8c00ff1 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Tue, 29 Mar 2005 07:24:35 +0000 Subject: MFC math.h,v 1.57: Add missing prototypes for fma() and fmaf(), and remove an inaccurate comment. Approved by: re --- lib/msun/src/math.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index e250905ed3c4..98d3ad4ae4d5 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -262,8 +262,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; @@ -388,6 +388,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 -- cgit v1.3