From 880f4499bb4f6883095965bdd3b9237d927e24d8 Mon Sep 17 00:00:00 2001 From: Arnaud Lacombe Date: Mon, 23 May 2011 00:05:28 -0400 Subject: genksyms: migrate parser to implicit rules Signed-off-by: Arnaud Lacombe --- scripts/genksyms/lex.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/genksyms/lex.l') diff --git a/scripts/genksyms/lex.l b/scripts/genksyms/lex.l index e4ddd493fec3..400ae06a70df 100644 --- a/scripts/genksyms/lex.l +++ b/scripts/genksyms/lex.l @@ -29,7 +29,7 @@ #include #include "genksyms.h" -#include "parse.h" +#include "parse.tab.h" /* We've got a two-level lexer here. We let flex do basic tokenization and then we categorize those basic tokens in the second stage. */ @@ -94,7 +94,7 @@ MC_TOKEN ([~%^&*+=|<>/-]=)|(&&)|("||")|(->)|(<<)|(>>) /* Bring in the keyword recognizer. */ -#include "keywords.c" +#include "keywords.hash.c" /* Macros to append to our phrase collection list. */ -- cgit v1.2.3-59-g8ed1b