summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/w_drem.c3
-rw-r--r--math/w_dremf.c3
-rw-r--r--math/w_dreml.c3
3 files changed, 3 insertions, 6 deletions
diff --git a/math/w_drem.c b/math/w_drem.c
index 9e2b1e7472..843b67aa80 100644
--- a/math/w_drem.c
+++ b/math/w_drem.c
@@ -8,8 +8,7 @@
#include <math.h>
double
-__drem(x, y)
- double x, y;
+__drem (double x, double y)
{
return __remainder(x, y);
}
diff --git a/math/w_dremf.c b/math/w_dremf.c
index 0e25ef8ccf..c5e7c63af5 100644
--- a/math/w_dremf.c
+++ b/math/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);
}
diff --git a/math/w_dreml.c b/math/w_dreml.c
index aa73eedc49..8d0139ac28 100644
--- a/math/w_dreml.c
+++ b/math/w_dreml.c
@@ -10,8 +10,7 @@
#include <math.h>
long double
-__dreml(x, y)
- long double x, y;
+__dreml (long double x, long double y)
{
return __remainderl(x, y);
}