diff options
Diffstat (limited to 'lib/msun/src')
-rw-r--r-- | lib/msun/src/w_dremf.c | 4 |
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); } |