summaryrefslogtreecommitdiff
path: root/math/w_drem.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_drem.c')
-rw-r--r--math/w_drem.c3
1 files changed, 1 insertions, 2 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);
}