summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-19 02:25:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-19 02:25:41 +0000
commit652f15029b099ebae0cfb89f5adc435faeb5fb09 (patch)
treea2daa88b949d8d00ef1adc3832e3c3903b8f7d69
parent44ba11158a038deae702bbc19ead64387808652a (diff)
downloadruby-652f15029b099ebae0cfb89f5adc435faeb5fb09.tar.gz
* node.h: commit miss.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/mvm@20284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--node.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/node.h b/node.h
index 5ae28382bd..9fc5543520 100644
--- a/node.h
+++ b/node.h
@@ -260,7 +260,7 @@ typedef struct RNode {
struct RNode *node;
ID id;
long state;
- struct global_entry *entry;
+ struct rb_global_entry *entry;
long cnt;
VALUE value;
} u3;
@@ -501,10 +501,10 @@ NODE *rb_node_newnode(enum node_type,VALUE,VALUE,VALUE);
NODE* rb_method_node(VALUE klass, ID id);
int rb_node_arity(NODE* node);
-struct global_entry *rb_global_entry(ID);
-VALUE rb_gvar_get(struct global_entry *);
-VALUE rb_gvar_set(struct global_entry *, VALUE);
-VALUE rb_gvar_defined(struct global_entry *);
+struct rb_global_entry *rb_global_entry(ID);
+VALUE rb_gvar_get(struct rb_global_entry *);
+VALUE rb_gvar_set(struct rb_global_entry *, VALUE);
+VALUE rb_gvar_defined(struct rb_global_entry *);
#if defined(__cplusplus)
#if 0