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