fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / math / tgammal.c
index 5c1a02a..5336c5b 100644 (file)
@@ -272,4 +272,10 @@ small:
                q = z / (x * __polevll(x, S, 8));
        return q;
 }
+#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
+// TODO: broken implementation to make things compile
+long double tgammal(long double x)
+{
+       return tgamma(x);
+}
 #endif