diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-04-24 18:39:24 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-04-24 18:39:24 +0000 |
commit | 7f43ca82483f7d40be2de8b3e06f9e8540ff489c (patch) | |
tree | 5b21c1ba81b5a3b9a91ab4eab1467fed927cd7a0 | |
parent | 48feaa1929341c44873d329d90f393a0e8a05571 (diff) |
lint prefers ANSI C function definitions if a prototype is available;
i can only agree
-rw-r--r-- | lib/libm/src/w_dremf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libm/src/w_dremf.c b/lib/libm/src/w_dremf.c index 9f1de53567e..e6404b393be 100644 --- a/lib/libm/src/w_dremf.c +++ b/lib/libm/src/w_dremf.c @@ -9,8 +9,7 @@ #include "math_private.h" float -dremf(x, y) - float x, y; +dremf(float x, float y) { return remainderf(x, y); } |