]> sourceware.org Git - glibc.git/blob - math/w_drem.c
Disable one hypot test for inline double testing.
[glibc.git] / math / 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
This page took 0.035387 seconds and 5 git commands to generate.