summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorRoca, Ignasi <ignasi.roca@fujitsu.siemens.es>2001-01-22 18:51:58 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-23 16:13:27 +0000
commit48cf72c85711f1650a96caf8dc746a297ee2bd06 (patch)
tree5884f9e4c95d96b7fde498099e063d387c6164ea /proto.h
parentc512e37464e3d1c993af1ac99fc83869882e5c21 (diff)
downloadperl-48cf72c85711f1650a96caf8dc746a297ee2bd06.tar.gz
RE: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison)
Message-ID: <5930DC161690D21196670090271575470397E915@madt009a.siemens.es> p4raw-id: //depot/perl@8532
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/proto.h b/proto.h
index 0a0a60c961..97e7ba7e65 100644
--- a/proto.h
+++ b/proto.h
@@ -844,10 +844,8 @@ PERL_CALLCONV I32 Perl_whichsig(pTHX_ char* sig);
PERL_CALLCONV int Perl_yyerror(pTHX_ char* s);
#ifdef USE_PURE_BISON
PERL_CALLCONV int Perl_yylex_r(pTHX_ YYSTYPE *lvalp, int *lcharp);
-PERL_CALLCONV int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
-#else
-PERL_CALLCONV int Perl_yylex(pTHX);
#endif
+PERL_CALLCONV int Perl_yylex(pTHX);
PERL_CALLCONV int Perl_yyparse(pTHX);
PERL_CALLCONV int Perl_yywarn(pTHX_ char* s);
#if defined(MYMALLOC)