about summary refs log tree commit diff
path: root/src/math/remainderf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/remainderf.c')
-rw-r--r--src/math/remainderf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/math/remainderf.c b/src/math/remainderf.c
index b418bbff..420d3bfc 100644
--- a/src/math/remainderf.c
+++ b/src/math/remainderf.c
@@ -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);