summaryrefslogtreecommitdiff
path: root/sysdeps/generic/w_dreml.c
blob: aa73eedc496bca65a92abce6fbd0eb22d47a227e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * dreml() wrapper for remainderl().
 *
 * Written by J.T. Conklin, <jtc@wimsey.com>
 * Conversion to long double by Ulrich Drepper,
 * Cygnus Support, drepper@cygnus.com.
 * Placed into the Public Domain, 1994.
 */

#include <math.h>

long double
__dreml(x, y)
	long double x, y;
{
	return __remainderl(x, y);
}
weak_alias (__dreml, dreml)