summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-02-02 04:49:13 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-02-02 04:49:13 +0000
commitde0e5e35ae39a03879d8a954dd6b75654c173cd7 (patch)
tree6f936b0ed7666e5b4c7009c039775bed1a4e9f32 /node.h
parent3293a425afd07c4b004e06e14f1735ca841c1411 (diff)
__FILE__,__LINE__
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@62 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/node.h b/node.h
index 832b8ca827..b5a837a091 100644
--- a/node.h
+++ b/node.h
@@ -119,15 +119,15 @@ typedef struct RNode {
union {
struct RNode *node;
ID id;
- int argc;
+ INT argc;
VALUE value;
} u2;
union {
struct RNode *node;
ID id;
- int state;
+ INT state;
struct global_entry *entry;
- int cnt;
+ INT cnt;
VALUE value;
} u3;
} NODE;