add sched_getcpu vDSO support
[oweals/musl.git] / src / math / remainderf.c
index b418bbfff49c1c0fe3b032696bf336900c308048..420d3bfc447b2ef14ed93266da2abc082fc40fc5 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);