aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2004-07-28 05:53:18 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2004-07-28 05:53:18 +0000
commitdd86691ec857df3f9692459b3b3365cd21831fba (patch)
treea43a0bd592c0799e25b5fbbd1231341a106dbd5f
parent2d18d113c7fc923411fd6d26eeed911b1a0c978a (diff)
downloadsrc-dd86691ec857df3f9692459b3b3365cd21831fba.tar.gz
src-dd86691ec857df3f9692459b3b3365cd21831fba.zip
Work around known GCC 3.4.x problem and use ANSI prototype for dremf().
Notes
Notes: svn path=/head/; revision=132760
-rw-r--r--lib/msun/src/w_dremf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/src/w_dremf.c b/lib/msun/src/w_dremf.c
index 92079a9a7bf3..4bfcff27f702 100644
--- a/lib/msun/src/w_dremf.c
+++ b/lib/msun/src/w_dremf.c
@@ -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);
}