diff options
author | takano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-29 06:45:26 +0000 |
---|---|---|
committer | takano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-29 06:45:26 +0000 |
commit | 5ece0480f77c0c057b44de4afd04cfa3d477ac44 (patch) | |
tree | 81c8032aa16f90189be8adb2832c1cdc475fc540 /complex.c | |
parent | ea1f71b81f7e0c6f958abb50da6ade0da64cd718 (diff) | |
download | ruby-5ece0480f77c0c057b44de4afd04cfa3d477ac44.tar.gz ruby-5ece0480f77c0c057b44de4afd04cfa3d477ac44.tar.xz ruby-5ece0480f77c0c057b44de4afd04cfa3d477ac44.zip |
* complex.c (imp1, imp2): should declare type.
[BUG] at IA-64
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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);\ } |