aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/src/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/math.h')
-rw-r--r--lib/msun/src/math.h3
1 files changed, 2 insertions, 1 deletions
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