summaryrefslogtreecommitdiff
path: root/enumerator.c
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-20 12:01:27 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-20 12:01:27 +0000
commitd657d4feb3c7c81557e2fe39fc6a669a4b6be5d4 (patch)
tree078074a3e36e17ab42df249fdd36905e68148225 /enumerator.c
parent3537b97bc1b22d93eb8e824c395b97f917abedee (diff)
* enumerator.c, include/ruby/ruby.h: Export rb_cEnumerator.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enumerator.c')
-rw-r--r--enumerator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enumerator.c b/enumerator.c
index 7c5b7f0131..2322c326ce 100644
--- a/enumerator.c
+++ b/enumerator.c
@@ -21,7 +21,7 @@
* A class which provides a method `each' to be used as an Enumerable
* object.
*/
-static VALUE rb_cEnumerator;
+VALUE rb_cEnumerator;
static VALUE sym_each;
VALUE rb_eStopIteration;