/* * dremf() wrapper for remainderf(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ /* $FreeBSD: src/lib/msun/src/w_dremf.c,v 1.3.24.1 2008/10/02 02:57:24 kensmith Exp $ */ #include "math.h" #include "math_private.h" float dremf(float x, float y) { return remainderf(x, y); }