pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2004-03-23
2004-03-23 15:14:00 by Martin Stjernholm <mast@lysator.liu.se>
00dc306641155c82447084b5a4b30032efc7647a (
6
lines) (+
4
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Avoid including language.h in language.c.
Rev: src/language.yacc:1.336
Rev: src/lex.h:1.33
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: language.yacc,v 1.
335
2004/03/
18
14:
54:17
grubba
Exp $
+
|| $Id: language.yacc,v 1.
336
2004/03/
23
15:
14:
00
mast
Exp $
*/ %pure_parser
113:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
335
2004/03/
18
14:
54:17
grubba
Exp $");
+
RCSID("$Id: language.yacc,v 1.
336
2004/03/
23
15:
14:
00
mast
Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
183:
%{ /* Needs to be included after YYSTYPE is defined. */
+
#define INCLUDED_FROM_LANGUAGE_YACC
#include "lex.h" %}