fix broken thread list unlocking after fork
[musl] / src / math / remainder.c
index ed5c477..612155f 100644 (file)
@@ -5,3 +5,5 @@ double remainder(double x, double y)
        int q;
        return remquo(x, y, &q);
 }
+
+weak_alias(remainder, drem);