summaryrefslogtreecommitdiff
path: root/newlib/libm/math/wf_drem.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/math/wf_drem.c')
-rw-r--r--newlib/libm/math/wf_drem.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/newlib/libm/math/wf_drem.c b/newlib/libm/math/wf_drem.c
new file mode 100644
index 00000000000..7c3f7c58eca
--- /dev/null
+++ b/newlib/libm/math/wf_drem.c
@@ -0,0 +1,19 @@
+/*
+ * dremf() wrapper for remainderf().
+ *
+ * Written by J.T. Conklin, <jtc@wimsey.com>
+ * Placed into the Public Domain, 1994.
+ */
+
+#include "fdlibm.h"
+
+float
+#ifdef __STDC__
+dremf(float x, float y)
+#else
+dremf(x, y)
+ float x, y;
+#endif
+{
+ return remainderf(x, y);
+}