Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libm / src / w_drem.c
blobb2242eb4770aa6077be9ad01ef3bd133802201e7
1 /*
2 * drem() wrapper for remainder().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBM_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: w_drem.c,v 1.3 1999/07/02 15:37:44 simonb Exp $");
11 #endif
13 #include <math.h>
15 double
16 drem(double x, double y)
18 return remainder(x, y);