fdisk - Use heads = 255 on file images
[dragonfly.git] / lib / libm / src / w_dremf.c
blob7cb50fdd48da3aa61772477f2e808327a19496fc
1 /*
2 * dremf() wrapper for remainderf().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
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 */
11 #include <math.h>
12 #include "math_private.h"
14 float
15 dremf(float x, float y)
17 return remainderf(x, y);