summaryrefslogtreecommitdiff
path: root/perly.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-01-02 19:44:23 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-01-02 19:44:23 +0000
commit93c535ac3c07a4674324635bcb8ecc089468009f (patch)
tree688f97d73c5f10beac184a7986ddcbae306c1027 /perly.c
parentba2fdce662d9a18bdc2020e77aeaf62e95c35c7c (diff)
downloadperl-93c535ac3c07a4674324635bcb8ecc089468009f.tar.gz
fix -Mad build breakage
p4raw-id: //depot/perl@29667
Diffstat (limited to 'perly.c')
-rw-r--r--perly.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/perly.c b/perly.c
index af09290581..94da31f1c8 100644
--- a/perly.c
+++ b/perly.c
@@ -296,6 +296,7 @@ S_clear_yystack(pTHX_ const yy_parser *parser)
/* delete a parser object */
+#ifndef PERL_IN_MADLY_C
void
Perl_parser_free(pTHX_ const yy_parser *parser)
{
@@ -303,7 +304,7 @@ Perl_parser_free(pTHX_ const yy_parser *parser)
Safefree(parser->stack);
PL_parser = parser->old_parser;
}
-
+#endif
/*----------.
| yyparse. |