aboutsummaryrefslogtreecommitdiffstats
path: root/complex.c
diff options
context:
space:
mode:
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/complex.c b/complex.c
index b4ac3e95e5..95a278e3ac 100644
--- a/complex.c
+++ b/complex.c
@@ -429,7 +429,7 @@ nucomp_f_complex(int argc, VALUE *argv, VALUE klass)
#define imp1(n) \
extern VALUE rb_math_##n(VALUE x);\
inline static VALUE \
-m_##n##_bang(x)\
+m_##n##_bang(VALUE x)\
{\
return rb_math_##n(x);\
}
@@ -437,7 +437,7 @@ m_##n##_bang(x)\
#define imp2(n) \
extern VALUE rb_math_##n(VALUE x, VALUE y);\
inline static VALUE \
-m_##n##_bang(x, y)\
+m_##n##_bang(VALUE x, VALUE y)\
{\
return rb_math_##n(x, y);\
}