summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
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;