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 +#include + #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