aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/src/s_trunc.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2008-02-15 07:01:40 +0000
committerBruce Evans <bde@FreeBSD.org>2008-02-15 07:01:40 +0000
commit63b4a1f80c8236a7c8ec469e48793745338d6e6a (patch)
tree0baf6e95ac9dc45c85a1e68d0c25f3c368335957 /lib/msun/src/s_trunc.c
parent7bbd40c57e7d858b804bb4d7420526f9ab07cee0 (diff)
downloadsrc-63b4a1f80c8236a7c8ec469e48793745338d6e6a.tar.gz
src-63b4a1f80c8236a7c8ec469e48793745338d6e6a.zip
Sigh, the weak reference for ceill(), floorl() and truncl() was in
unreachable code due to a missing include. This kept arm and powerpc broken. Reported by: sam, grehan
Notes
Notes: svn path=/head/; revision=176305
Diffstat (limited to 'lib/msun/src/s_trunc.c')
-rw-r--r--lib/msun/src/s_trunc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/msun/src/s_trunc.c b/lib/msun/src/s_trunc.c
index 0b3089e323b8..86e97bd22378 100644
--- a/lib/msun/src/s_trunc.c
+++ b/lib/msun/src/s_trunc.c
@@ -22,6 +22,8 @@ __FBSDID("$FreeBSD$");
* Inexact flag raised if x not equal to trunc(x).
*/
+#include <float.h>
+
#include "math.h"
#include "math_private.h"