aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-16 01:46:43 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-16 01:46:43 +0000
commitce03ef024295f247ecf4a4e476691d1497974d90 (patch)
tree9cdf8827680bd495c93fdbc77d24f824de391632
parent5db50ed02d97de08c47f4abe1edf47e87b500314 (diff)
downloadruby-ce03ef024295f247ecf4a4e476691d1497974d90.tar.gz
* ext/-test-/num2int/num2int.c: remove an unnecessary and wrong decl
of rb_stdout. it's declared in ruby.h correctly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/-test-/num2int/num2int.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5307edb7c3..d5b1686840 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Nov 16 10:45:00 2011 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * ext/-test-/num2int/num2int.c: remove an unnecessary and wrong decl
+ of rb_stdout. it's declared in ruby.h correctly.
+
Wed Nov 16 10:26:41 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* bignum.c (rb_big2ull): add a cast to get rid of a VC++ warning.
diff --git a/ext/-test-/num2int/num2int.c b/ext/-test-/num2int/num2int.c
index 8f99079253..5230896658 100644
--- a/ext/-test-/num2int/num2int.c
+++ b/ext/-test-/num2int/num2int.c
@@ -1,7 +1,5 @@
#include <ruby.h>
-extern VALUE rb_stdout;
-
static VALUE
print_num2short(VALUE obj, VALUE num)
{