summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/msun/src/s_frexp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/msun/src/s_frexp.c b/lib/msun/src/s_frexp.c
index eeb70d9f2eec..de9b92729da7 100644
--- a/lib/msun/src/s_frexp.c
+++ b/lib/msun/src/s_frexp.c
@@ -24,6 +24,9 @@ static char rcsid[] = "$FreeBSD$";
* with *exp=0.
*/
+#include <sys/cdefs.h>
+#include <float.h>
+
#include "math.h"
#include "math_private.h"
@@ -49,3 +52,7 @@ frexp(double x, int *eptr)
SET_HIGH_WORD(x,hx);
return x;
}
+
+#if (LDBL_MANT_DIG == 53)
+__strong_reference(frexp, frexpl);
+#endif