aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd_grammar.lemon
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-09-12 19:32:35 +0000
committerGuy Harris <guy@alum.mit.edu>2005-09-12 19:32:35 +0000
commit019ed9005f9ca0e450750eb303ef13511c945c39 (patch)
tree7657eae71a21f58ef2441f33bfe4c061b462e2e0 /epan/dtd_grammar.lemon
parent3db317ca2bb2e2bbd1e8e4a394ff4635ebcedc5a (diff)
Add a header file to declare routines defined in lexer and used in
parser, or vice versa. svn path=/trunk/; revision=15769
Diffstat (limited to 'epan/dtd_grammar.lemon')
-rw-r--r--epan/dtd_grammar.lemon5
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dtd_grammar.lemon b/epan/dtd_grammar.lemon
index d5f0f0281d..153f320efb 100644
--- a/epan/dtd_grammar.lemon
+++ b/epan/dtd_grammar.lemon
@@ -6,7 +6,7 @@
*
* Copyright 2005, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
-* $Id $
+* $Id$
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -27,9 +27,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#include <stdio.h>
#include <glib.h>
#include "dtd.h"
-
+#include "dtd_parse.h"
static dtd_named_list_t* dtd_named_list_new(gchar* name, GPtrArray* list) {
dtd_named_list_t* nl = g_malloc(sizeof(dtd_named_list_t));