blob: d703732816333bbbcae2e7d760fce7145c120dd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* madly.c
*
* Copyright (c) 2004, 2005, 2006 Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
* Note that this file is essentially empty, and just #includes perly.c,
* to allow compilation of a second parser, Perl_madparse, that is
* identical to Perl_yyparse, but which includes extra code for dumping
* the parse tree. This is controlled by the PERL_IN_MADLY_C define.
*/
#define PERL_IN_MADLY_C
#include "perly.c"
/*
* Local variables:
* c-indentation-style: bsd
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*
* ex: set ts=8 sts=4 sw=4 et:
*/
|