diff options
| author | 2006-04-24 18:39:23 +0000 | |
|---|---|---|
| committer | 2006-04-24 18:39:23 +0000 | |
| commit | 481e016171d8afd0ecbe75f7981c06557a04a01f (patch) | |
| tree | 3fe32222ba74c6f85919df73693e1356d0b71f16 /lib/libm/src | |
| parent | small delint; ok deraadt@ (diff) | |
| download | wireguard-openbsd-481e016171d8afd0ecbe75f7981c06557a04a01f.tar.xz wireguard-openbsd-481e016171d8afd0ecbe75f7981c06557a04a01f.zip | |
lint prefers ANSI C function definitions if a prototype is available;
i can only agree
Diffstat (limited to 'lib/libm/src')
| -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); } |
