aboutsummaryrefslogtreecommitdiff
path: root/newlib/libm/math/w_drem.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/math/w_drem.c')
-rw-r--r--newlib/libm/math/w_drem.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/newlib/libm/math/w_drem.c b/newlib/libm/math/w_drem.c
deleted file mode 100644
index d289bda..0000000
--- a/newlib/libm/math/w_drem.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * 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);
-}