fix uninitialized variable in new __res_msend dns function
[musl] / src / math / remainderf.c
index b418bbf..420d3bf 100644 (file)
@@ -1,7 +1,10 @@
 #include <math.h>
+#include "libc.h"
 
 float remainderf(float x, float y)
 {
        int q;
        return remquof(x, y, &q);
 }
+
+weak_alias(remainderf, dremf);