diff options
author | das <das@FreeBSD.org> | 2008-03-29 16:38:29 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-03-29 16:38:29 +0000 |
commit | ff9d959b80040c1b6f625d31c27260c10479be5d (patch) | |
tree | 2b810a1ae4c4f111c27a2dbc2bb2944cd8a34fe6 /lib | |
parent | a1fc7d5578d1a2e8073a3b131d04a92d0d696d00 (diff) | |
download | FreeBSD-src-ff9d959b80040c1b6f625d31c27260c10479be5d.zip FreeBSD-src-ff9d959b80040c1b6f625d31c27260c10479be5d.tar.gz |
Include math.h for the fmaf() prototype.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/msun/src/s_fmaf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/msun/src/s_fmaf.c b/lib/msun/src/s_fmaf.c index 1b483b7..7c699e5 100644 --- a/lib/msun/src/s_fmaf.c +++ b/lib/msun/src/s_fmaf.c @@ -27,6 +27,8 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "math.h" + /* * Fused multiply-add: Compute x * y + z with a single rounding error. * |