summaryrefslogtreecommitdiffstats
path: root/lib/libm/src
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2006-04-24 18:39:23 +0000
committerotto <otto@openbsd.org>2006-04-24 18:39:23 +0000
commit481e016171d8afd0ecbe75f7981c06557a04a01f (patch)
tree3fe32222ba74c6f85919df73693e1356d0b71f16 /lib/libm/src
parentsmall delint; ok deraadt@ (diff)
downloadwireguard-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.c3
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);
}