2.9
[glibc/nacl-glibc.git] / math / w_dreml.c
blobaa73eedc496bca65a92abce6fbd0eb22d47a227e
1 /*
2 * dreml() wrapper for remainderl().
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 */
10 #include <math.h>
12 long double
13 __dreml(x, y)
14 long double x, y;
16 return __remainderl(x, y);
18 weak_alias (__dreml, dreml)