Merge branch 'vendor/LIBPCAP'
[dragonfly.git] / lib / libm / src / w_dremf.c
1 /*
2  * dremf() wrapper for remainderf().
3  *
4  * Written by J.T. Conklin, <jtc@wimsey.com>
5  * Placed into the Public Domain, 1994.
6  *
7  * $NetBSD: w_dremf.c,v 1.4 2004/06/25 15:57:38 drochner Exp $
8  * $DragonFly: src/lib/libm/src/w_dremf.c,v 1.1 2005/07/26 21:15:20 joerg Exp $
9  */
10
11 #include <math.h>
12 #include "math_private.h"
13
14 float
15 dremf(float x, float y)
16 {
17         return remainderf(x, y);
18 }