mirror of git://sourceware.org/git/glibc.git
18 lines
350 B
C
18 lines
350 B
C
/*
|
|
* 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 (long double x, long double y)
|
|
{
|
|
return __remainderl(x, y);
|
|
}
|
|
weak_alias (__dreml, dreml)
|