]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/generic/w_drem.c
2005-12-13 Ulrich Drepper <drepper@redhat.com>
[thirdparty/glibc.git] / sysdeps / generic / w_drem.c
1 /*
2 * drem() wrapper for remainder().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
7
8 #include <math.h>
9
10 double
11 __drem(x, y)
12 double x, y;
13 {
14 return __remainder(x, y);
15 }
16 weak_alias (__drem, drem)
17 #ifdef NO_LONG_DOUBLE
18 strong_alias (__drem, __dreml)
19 weak_alias (__drem, dreml)
20 #endif