From 7de38dd3f5e7ce6c035e62a292fa8a8adfb774f5 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 27 Oct 2008 11:07:37 +0000 Subject: * ext/mathn/complex/complex.c: no need to define rb_cComplex because it's already defined at $(srcdir)/complex.c. * ext/mathn/rational/rational.c: no need to define rb_cRational because it's already defined at $(srcdir)/rational.c. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/mathn/complex/complex.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/mathn/complex/complex.c') diff --git a/ext/mathn/complex/complex.c b/ext/mathn/complex/complex.c index 5a24c6a35..01ce7d3ca 100644 --- a/ext/mathn/complex/complex.c +++ b/ext/mathn/complex/complex.c @@ -24,7 +24,9 @@ #define ONE INT2FIX(1) #define TWO INT2FIX(2) +#if 0 VALUE rb_cComplex; +#endif static ID id_abs, id_abs2, id_arg, id_cmp, id_conj, id_convert, id_denominator, id_divmod, id_equal_p, id_expt, id_floor, id_hash, -- cgit