1 /*
2 Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
3 
4 Developed at SunPro, a Sun Microsystems, Inc. business.
5 Permission to use, copy, modify, and distribute this
6 software is freely granted, provided that this notice
7 is preserved.
8  */
9 /*
10  * dremf() wrapper for remainderf().
11  *
12  * Written by J.T. Conklin, <jtc@wimsey.com>
13  * Placed into the Public Domain, 1994.
14  */
15 
16 #include "fdlibm.h"
17 
18 float
dremf(float x,float y)19 dremf(float x, float y)
20 {
21     return remainderf(x, y);
22 }
23 
24 _MATH_ALIAS_f_ff(drem)
25