summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-10-28 16:02:47 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-10-28 16:02:47 +0000
commitdba4d15314674d8e2372d6f7a985345787581cbb (patch)
tree234455629f7743610048270294f4bc627f10234e /proto.h
parent47deb5e7d69449fbaa65f4bd4f42d66014743a75 (diff)
downloadperl-dba4d15314674d8e2372d6f7a985345787581cbb.tar.gz
The reëntrant version shouldn't be needed unless USE_PURE_BISON.
p4raw-id: //depot/perl@7465
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 06ef1b1fcc..1d0f855f36 100644
--- a/proto.h
+++ b/proto.h
@@ -832,12 +832,12 @@ PERL_CALLCONV void Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args);
PERL_CALLCONV void Perl_watch(pTHX_ char** addr);
PERL_CALLCONV I32 Perl_whichsig(pTHX_ char* sig);
PERL_CALLCONV int Perl_yyerror(pTHX_ char* s);
-#if defined(USE_PURE_BISON)
+#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
-STATIC int S_syylex(pTHX);
PERL_CALLCONV int Perl_yyparse(pTHX);
PERL_CALLCONV int Perl_yywarn(pTHX_ char* s);
#if defined(MYMALLOC)