summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das@FreeBSD.org>2005-03-18 01:47:42 +0000
committerdas <das@FreeBSD.org>2005-03-18 01:47:42 +0000
commit9f8ee2b273ba40903ef83385f2b901f02182c92e (patch)
treef3f386980d016b0a275ca193b64f0166ac44b5d9
parentd241e1d02fcb40fb65cf5e6b2f8ac208111568af (diff)
downloadFreeBSD-src-9f8ee2b273ba40903ef83385f2b901f02182c92e.zip
FreeBSD-src-9f8ee2b273ba40903ef83385f2b901f02182c92e.tar.gz
Add missing prototypes for fma() and fmaf(), and remove an inaccurate
comment.
-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 5857148..9b8f73c 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
OpenPOWER on IntegriCloud