xref: /aosp_15_r20/bionic/libm/upstream-freebsd/lib/msun/src/w_drem.c (revision 8d67ca893c1523eb926b9080dbe4e2ffd2a27ba1)
1 /*
2  * drem() wrapper for remainder().
3  *
4  * Written by J.T. Conklin, <[email protected]>
5  * Placed into the Public Domain, 1994.
6  */
7 
8 #include <math.h>
9 
10 double
drem(double x,double y)11 drem(double x, double y)
12 {
13 	return remainder(x, y);
14 }
15