Work around known GCC 3.4.x problem and use ANSI prototype for dremf().

This commit is contained in:
Alexander Kabaev 2004-07-28 05:53:18 +00:00
parent 2d18d113c7
commit dd86691ec8

View File

@ -4,13 +4,13 @@
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
/* $FreeBSD$ */
#include "math.h"
#include "math_private.h"
float
dremf(x, y)
float x, y;
dremf(float x, float y)
{
return remainderf(x, y);
}