summaryrefslogtreecommitdiff
path: root/newlib/libm/mathfp/w_drem.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/mathfp/w_drem.c')
-rw-r--r--newlib/libm/mathfp/w_drem.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/newlib/libm/mathfp/w_drem.c b/newlib/libm/mathfp/w_drem.c
new file mode 100644
index 00000000000..d289bdaac9e
--- /dev/null
+++ b/newlib/libm/mathfp/w_drem.c
@@ -0,0 +1,15 @@
+/*
+ * drem() wrapper for remainder().
+ *
+ * Written by J.T. Conklin, <jtc@wimsey.com>
+ * Placed into the Public Domain, 1994.
+ */
+
+#include "fdlibm.h"
+
+double
+drem(x, y)
+ double x, y;
+{
+ return remainder(x, y);
+}