From abfbdde177c3a7155070dda1b2cdc8292054cc26 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 14 Jul 1999 00:54:57 +0000 Subject: Update. --- 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 0000000..b740ea3 --- /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 "math.h" +#include "math_private.h" + +float +__dremf(x, y) + float x, y; +{ + return __remainderf(x, y); +} +weak_alias (__dremf, dremf) -- cgit v1.1