summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-13 05:58:11 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-13 05:58:11 +0000
commitad592443af373c3bbe61b41df106734856ad3072 (patch)
tree7b22e50d3e273c1777d0e0984f4bfca92978131c /node.h
parent9fd5fe739c55bfed9aa22728c1cefcb2e19d1720 (diff)
no INT,UINT
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@208 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/node.h b/node.h
index 04549d734c..c92fe3c0cf 100644
--- a/node.h
+++ b/node.h
@@ -110,7 +110,7 @@ enum node_type {
};
typedef struct RNode {
- UINT flags;
+ unsigned long flags;
char *nd_file;
union {
struct RNode *node;
@@ -122,15 +122,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;