Commit | Line | Data |
e174121b |
1 | /* madly.c |
2 | * |
356f4fed |
3 | * Copyright (c) 2004, 2005, 2006 Larry Wall and others |
e174121b |
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 |
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 |
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 |
12 | */ |
13 | |
bc463c31 |
14 | #define PERL_IN_MADLY_C |
e174121b |
15 | |
bc463c31 |
16 | #include "perly.c" |
356f4fed |
17 | |
18 | /* |
19 | * Local variables: |
20 | * c-indentation-style: bsd |
21 | * c-basic-offset: 4 |
22 | * indent-tabs-mode: t |
23 | * End: |
24 | * |
25 | * ex: set ts=8 sts=4 sw=4 noet: |
26 | */ |