FreeBSD and NetBSD both use derivates of Sun's math library. On FreeBSD,
[dragonfly.git] / lib / libm / src / w_drem.c
1 /*
2  * drem() wrapper for remainder().
3  *
4  * Written by J.T. Conklin, <jtc@wimsey.com>
5  * Placed into the Public Domain, 1994.
6  *
7  * $NetBSD: w_drem.c,v 1.4 2004/06/25 15:57:38 drochner Exp $
8  * $DragonFly: src/lib/libm/src/w_drem.c,v 1.1 2005/07/26 21:15:20 joerg Exp $
9  */
10
11 #include <math.h>
12
13 double
14 drem(double x, double y)
15 {
16         return remainder(x, y);
17 }