diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-01-02 01:51:05 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-01-02 01:51:05 +0000 |
commit | 199e78b72f538ce004dd96ef2f457b84b88279cc (patch) | |
tree | 309f7138682f0b3373cad16cdf3482ad9cfe145e /proto.h | |
parent | 6ef55633ec162e15cc77d16a7154bf022d691dbc (diff) | |
download | perl-199e78b72f538ce004dd96ef2f457b84b88279cc.tar.gz |
move easy lexer state variables into PL_parser
(where "easy" == "only appear in toke.c")
p4raw-id: //depot/perl@29655
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2600,6 +2600,10 @@ PERL_CALLCONV int Perl_yyparse(pTHX); PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *) __attribute__nonnull__(pTHX_1); +PERL_CALLCONV yy_parser* Perl_parser_dup(pTHX_ const yy_parser *proto, CLONE_PARAMS* param) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_2); + PERL_CALLCONV int Perl_yywarn(pTHX_ const char* s) __attribute__nonnull__(pTHX_1); |