This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlretut.pod: Rephrase about \p{}.
[perl5.git] / madly.c
CommitLineData
e174121b
NC
1/* madly.c
2 *
356f4fed 3 * Copyright (c) 2004, 2005, 2006 Larry Wall and others
e174121b
NC
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
bc463c31
DM
8 * Note that this file is essentially empty, and just #includes perly.c,
9 * to allow compilation of a second parser, Perl_madparse, that is
f05e27e5
DM
10 * identical to Perl_yyparse, but which includes extra code for dumping
11 * the parse tree. This is controlled by the PERL_IN_MADLY_C define.
e174121b
NC
12 */
13
bc463c31 14#define PERL_IN_MADLY_C
e174121b 15
bc463c31 16#include "perly.c"
356f4fed
DM
17
18/*
19 * Local variables:
20 * c-indentation-style: bsd
21 * c-basic-offset: 4
14d04a33 22 * indent-tabs-mode: nil
356f4fed
DM
23 * End:
24 *
14d04a33 25 * ex: set ts=8 sts=4 sw=4 et:
356f4fed 26 */