Alias frexp as frexpl on platforms where a long double is the same as

a double.
This commit is contained in:
das 2005-03-07 04:54:39 +00:00
parent c8e0555e08
commit 2474fb3758

View File

@ -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