math: fix expm1f overflow threshold
[musl] / src / math / remainderf.c
index b418bbf..bf1d7b2 100644 (file)
@@ -5,3 +5,5 @@ float remainderf(float x, float y)
        int q;
        return remquof(x, y, &q);
 }
+
+weak_alias(remainderf, dremf);