aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
diff options
context:
space:
mode:
authorDavid Schultz <das@FreeBSD.org>2005-03-29 07:24:35 +0000
committerDavid Schultz <das@FreeBSD.org>2005-03-29 07:24:35 +0000
commit27b3a815cbdc171aa548ebf00a254715d8c00ff1 (patch)
treeb2377e6ea71950359b988757252a578a3fd77c95 /lib/msun
parent8dd3cd92446f9ee1beaa23c8ab14c1f3503f7d4a (diff)
Notes
Diffstat (limited to 'lib/msun')
-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