diff options
author | das <das@FreeBSD.org> | 2008-03-30 20:47:26 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-03-30 20:47:26 +0000 |
commit | 8bd589e900966d3632729a91a273b3ea8ec105fc (patch) | |
tree | d96640ee9571ce11b2a32017ae00eee950ae0f62 /lib/msun/src/s_remquo.c | |
parent | 5b02b6e17877174967df81503e751e79872880f1 (diff) | |
download | FreeBSD-src-8bd589e900966d3632729a91a273b3ea8ec105fc.zip FreeBSD-src-8bd589e900966d3632729a91a273b3ea8ec105fc.tar.gz |
Implement remquol() based on remquo().
Diffstat (limited to 'lib/msun/src/s_remquo.c')
-rw-r--r-- | lib/msun/src/s_remquo.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/msun/src/s_remquo.c b/lib/msun/src/s_remquo.c index 8756c2a..a64277a 100644 --- a/lib/msun/src/s_remquo.c +++ b/lib/msun/src/s_remquo.c @@ -13,6 +13,8 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <float.h> + #include "math.h" #include "math_private.h" @@ -150,3 +152,7 @@ fixup: *quo = (sxy ? -q : q); return x; } + +#if LDBL_MANT_DIG == 53 +__weak_reference(remquo, remquol); +#endif |