fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / math / acosh.c
index 4ce9b3d..badbf90 100644 (file)
@@ -1,5 +1,10 @@
 #include "libm.h"
 
+#if FLT_EVAL_METHOD==2
+#undef sqrt
+#define sqrt sqrtl
+#endif
+
 /* acosh(x) = log(x + sqrt(x*x-1)) */
 double acosh(double x)
 {