diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-10 15:00:13 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-10 15:00:13 +0000 |
commit | b1686c86fe0b9d10487203d510d1533994e42ebc (patch) | |
tree | f0ff994be0bebdb736a3ceaebfb1724a0e451588 /complex.c | |
parent | 330023fd85a0b13eccd2db88fb099bd46440e92b (diff) | |
download | ruby-b1686c86fe0b9d10487203d510d1533994e42ebc.tar.gz ruby-b1686c86fe0b9d10487203d510d1533994e42ebc.tar.xz ruby-b1686c86fe0b9d10487203d510d1533994e42ebc.zip |
* complex.c: avoided warnings on cpp.
* rational.c: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -320,6 +320,10 @@ f_complex_new_bang2(VALUE klass, VALUE x, VALUE y) return nucomp_s_new_internal(klass, x, y); } +#ifndef RUBY_VERSION_CODE +#include "version.h" +#endif + #if RUBY_VERSION_CODE < 200 #define CANON #endif @@ -1427,6 +1431,10 @@ Init_Complex(void) rb_undef_method(rb_cComplex, "step"); rb_undef_method(rb_cComplex, "truncate"); +#ifndef NUBY +#define NUBY 0 +#endif + #if NUBY rb_undef_method(rb_cComplex, "//"); #endif |