From 032248d337bd683d2b77d972097a2f31688874cb Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 13 Jul 2005 13:44:21 +0000 Subject: * parse.y: remove static variables. [ruby-dev:26530] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'node.h') diff --git a/node.h b/node.h index c55bbe1afc..43efba3ea9 100644 --- a/node.h +++ b/node.h @@ -350,6 +350,13 @@ typedef struct RNode { #define NOEX_UNDEF NOEX_NOSUPER +VALUE rb_parser_new _((void)); +VALUE rb_parser_end_seen_p _((VALUE)); + +NODE *rb_parser_compile_cstr _((volatile VALUE, const char*, const char*, int, int)); +NODE *rb_parser_compile_string _((volatile VALUE, const char*, VALUE, int)); +NODE *rb_parser_compile_file _((volatile VALUE, const char*, VALUE, int)); + NODE *rb_compile_cstr _((const char*, const char*, int, int)); NODE *rb_compile_string _((const char*, VALUE, int)); NODE *rb_compile_file _((const char*, VALUE, int)); -- cgit v1.2.1