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_dreml.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 math/w_dreml.c (limited to 'math/w_dreml.c') diff --git a/math/w_dreml.c b/math/w_dreml.c new file mode 100644 index 0000000..aa73eed --- /dev/null +++ b/math/w_dreml.c @@ -0,0 +1,18 @@ +/* + * dreml() wrapper for remainderl(). + * + * Written by J.T. Conklin, + * Conversion to long double by Ulrich Drepper, + * Cygnus Support, drepper@cygnus.com. + * Placed into the Public Domain, 1994. + */ + +#include + +long double +__dreml(x, y) + long double x, y; +{ + return __remainderl(x, y); +} +weak_alias (__dreml, dreml) -- cgit v1.1