NPTL is no longer an add-on!
[platform/upstream/glibc.git] / math / w_dreml.c
1 /*
2  * dreml() wrapper for remainderl().
3  *
4  * Written by J.T. Conklin, <jtc@wimsey.com>
5  * Conversion to long double by Ulrich Drepper,
6  * Cygnus Support, drepper@cygnus.com.
7  * Placed into the Public Domain, 1994.
8  */
9
10 #include <math.h>
11
12 long double
13 __dreml(x, y)
14         long double x, y;
15 {
16         return __remainderl(x, y);
17 }
18 weak_alias (__dreml, dreml)