diff options
author | David Schultz <das@FreeBSD.org> | 2005-03-07 04:54:39 +0000 |
---|---|---|
committer | David Schultz <das@FreeBSD.org> | 2005-03-07 04:54:39 +0000 |
commit | f8a40fca14d99671f7047eadfac4c0bbfbd89e11 (patch) | |
tree | 0c10f8cfe828efa8656106c059e5847d72fd13de | |
parent | 65e60ab108c1be20e77f05abaee8904fe1822d84 (diff) |
Notes
-rw-r--r-- | lib/msun/src/s_frexp.c | 7 |
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 |