remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / math / remainder.c
index ed5c477eabe1c4f88472c53b50cb2ab51d5c59bc..6cd089c467cee72945007f92814f60926c98c836 100644 (file)
@@ -1,7 +1,10 @@
 #include <math.h>
+#include "libc.h"
 
 double remainder(double x, double y)
 {
        int q;
        return remquo(x, y, &q);
 }
+
+weak_alias(remainder, drem);