xref: /minix3/lib/libm/src/w_drem.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
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 
8 #include <sys/cdefs.h>
9 #if defined(LIBM_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: w_drem.c,v 1.4 2004/06/25 15:57:38 drochner Exp $");
11 #endif
12 
13 #include <math.h>
14 
15 double
drem(double x,double y)16 drem(double x, double y)
17 {
18 	return remainder(x, y);
19 }
20