aboutsummaryrefslogtreecommitdiff
path: root/lexxer.l
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2016-03-14 16:22:34 -0400
committerJustus Winter <justus@gnupg.org>2016-03-15 18:59:25 +0100
commit8023ec242f1442159ba68d793447b9b3dc8db0aa (patch)
treefcd710d2085b45fc1c36b359f36e0b51399d09c6 /lexxer.l
parent95a729b9dd53b0486789a80c1775c987f87dd0f2 (diff)
downloadmig-8023ec242f1442159ba68d793447b9b3dc8db0aa.tar.gz
mig-8023ec242f1442159ba68d793447b9b3dc8db0aa.tar.bz2
mig-8023ec242f1442159ba68d793447b9b3dc8db0aa.zip
Automatically generate parser.h.
* Makefile.am: Set AM_YFLAGS to -d to generate parser.h. Add parser.h to CLEANFILES and include parser.h as a dependency of lexxer.c. * lexxer.l: Declare yyerror here. * parser.h: Remove file since yacc will generate the same content automatically.
Diffstat (limited to 'lexxer.l')
-rw-r--r--lexxer.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/lexxer.l b/lexxer.l
index 7ff5677..c71f85a 100644
--- a/lexxer.l
+++ b/lexxer.l
@@ -85,6 +85,8 @@ FileName ({QString}|{AString})
extern YYSTYPE yylval; /* added by rm */
+extern void yyerror(const char *);
+
int lineno;
char *inname;