summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkan <kan@FreeBSD.org>2004-07-28 05:53:18 +0000
committerkan <kan@FreeBSD.org>2004-07-28 05:53:18 +0000
commitd037fe2cca7e0cdc8bfe48b67480201458d083d0 (patch)
treea43a0bd592c0799e25b5fbbd1231341a106dbd5f
parent425239bf6e3ee000b6516e297014fd6da4797781 (diff)
downloadFreeBSD-src-d037fe2cca7e0cdc8bfe48b67480201458d083d0.zip
FreeBSD-src-d037fe2cca7e0cdc8bfe48b67480201458d083d0.tar.gz
Work around known GCC 3.4.x problem and use ANSI prototype for dremf().
-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 92079a9..4bfcff2 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);
}
OpenPOWER on IntegriCloud