From 36f3603cae6536e571220721e916b8d284cf0675 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> Date: Tue, 10 Feb 1998 08:44:05 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'v1_1b7'. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_1b7@70 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'node.h') diff --git a/node.h b/node.h index cdb354c007..b5a837a091 100644 --- a/node.h +++ b/node.h @@ -6,7 +6,7 @@ $Date$ created at: Fri May 28 15:14:02 JST 1993 - Copyright (C) 1993-1996 Yukihiro Matsumoto + Copyright (C) 1993-1998 Yukihiro Matsumoto ************************************************/ @@ -101,6 +101,9 @@ enum node_type { NODE_TAG, NODE_NEWLINE, NODE_POSTEXE, +#ifdef C_ALLOCA + NODE_ALLOCA, +#endif }; typedef struct RNode { @@ -116,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; -- cgit v1.2.3