lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 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) |