summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-18 13:41:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-18 13:41:54 +0000
commit52f5f410e4ce1614793328d38d55f84f66371e6e (patch)
tree3b010757fccaa8b5f9a40754b9d586c953f1d506 /include
parent2082417a48d56295796e2bbfc2001ecf5008a88a (diff)
* internal.h: add for internal use only.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/intern.h1
-rw-r--r--include/ruby/ruby.h6
2 files changed, 2 insertions, 5 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 71fc3fcb2c..bc3c4491cd 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -518,6 +518,7 @@ VALUE rb_obj_id(VALUE);
VALUE rb_obj_class(VALUE);
VALUE rb_class_real(VALUE);
VALUE rb_class_inherited_p(VALUE, VALUE);
+VALUE rb_class_superclass(VALUE);
VALUE rb_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_to_integer(VALUE, const char *);
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index c8790df6b7..38bfe3f56c 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -609,11 +609,7 @@ struct RObject {
ROBJECT(o)->as.heap.iv_index_tbl)
/** @internal */
-typedef struct {
- VALUE super;
- struct st_table *iv_tbl;
- struct st_table *const_tbl;
-} rb_classext_t;
+typedef struct rb_classext_struct rb_classext_t;
struct RClass {
struct RBasic basic;