Fix GCC 3.4 build
[dragonfly.git] / lib / msun / src / w_dremf.c
1 /*
2  * $DragonFly: src/lib/msun/src/Attic/w_dremf.c,v 1.2 2004/06/19 17:19:50 joerg Exp $
3  *
4  * dremf() wrapper for remainderf().
5  *
6  * Written by J.T. Conklin, <jtc@wimsey.com>
7  * Placed into the Public Domain, 1994.
8  */
9
10 #include "math.h"
11 #include "math_private.h"
12
13 float
14 dremf(float x, float y)
15 {
16         return remainderf(x, y);
17 }