From 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 12 Jul 2007 18:26:36 +0000 Subject: 2.5-18.1 --- math/w_dremf.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 math/w_dremf.c (limited to 'math/w_dremf.c') diff --git a/math/w_dremf.c b/math/w_dremf.c new file mode 100644 index 0000000000..c3d391d634 --- /dev/null +++ b/math/w_dremf.c @@ -0,0 +1,17 @@ +/* + * dremf() wrapper for remainderf(). + * + * Written by J.T. Conklin, + * Placed into the Public Domain, 1994. + */ + +#include +#include "math_private.h" + +float +__dremf(x, y) + float x, y; +{ + return __remainderf(x, y); +} +weak_alias (__dremf, dremf) -- cgit v1.2.3