Try to fixup the mess of mdoc(7)/man(7) mixture as created by the merge.
[netbsd-mini2440.git] / lib / libm / src / w_dremf.c
blobf4cd718cffdf490214231b62c887184129d567dd
1 /*
2 * dremf() wrapper for remainderf().
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_dremf.c,v 1.3 1999/07/02 15:37:44 simonb Exp $");
11 #endif
13 #include "math.h"
14 #include "math_private.h"
16 float
17 dremf(float x, float y)
19 return remainderf(x, y);