Cleanup sync_file_range implementation
[glibc.git] / math / w_dreml.c
blob8d0139ac28061cccbfb18ec514e2fcfbf3716c49
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 (long double x, long double y)
15 return __remainderl(x, y);
17 weak_alias (__dreml, dreml)