1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

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

a double.
This commit is contained in:
David Schultz 2005-03-07 04:54:39 +00:00
parent 65e60ab108
commit f8a40fca14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143212

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