summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_atan2.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_atan2.c')
-rw-r--r--lib/msun/src/e_atan2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/msun/src/e_atan2.c b/lib/msun/src/e_atan2.c
index ba0b618..399822a 100644
--- a/lib/msun/src/e_atan2.c
+++ b/lib/msun/src/e_atan2.c
@@ -42,6 +42,8 @@ __FBSDID("$FreeBSD$");
* to produce the hexadecimal values shown.
*/
+#include <float.h>
+
#include "math.h"
#include "math_private.h"
@@ -123,3 +125,7 @@ __ieee754_atan2(double y, double x)
return (z-pi_lo)-pi;/* atan(-,-) */
}
}
+
+#if LDBL_MANT_DIG == 53
+__weak_reference(atan2, atan2l);
+#endif
OpenPOWER on IntegriCloud