diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-11-18 21:43:28 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-11-18 21:43:28 (GMT) |
commit | fee4053bd3dd075a2dd2cba4da8166ec5307eadd (patch) | |
tree | 94365b932426de715b3a479094b7056e0c4f878b /src/vhdlscanner.l | |
parent | ceb4115c7b941039411e1793e01239610ff112a2 (diff) | |
download | Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.zip Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.gz Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.bz2 |
Release-1.8.2-20121118
Diffstat (limited to 'src/vhdlscanner.l')
-rw-r--r-- | src/vhdlscanner.l | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/vhdlscanner.l b/src/vhdlscanner.l index e7de626..898713e 100644 --- a/src/vhdlscanner.l +++ b/src/vhdlscanner.l @@ -34,7 +34,7 @@ *******************************************************/ /****************************************************************************** * modified for doxygen by M. Kreis - * extended to VHDL 93/2002/2008 + * extended to VHDL 93/2008 ******************************************************************************/ %{ @@ -42,29 +42,27 @@ typedef int YYSTYPE; #endif -#include <ctype.h> #include <search.h> - #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <string.h> #include <ctype.h> + +#include <qmap.h> #include "commentscan.h" #include "vhdlparser.h" #include "vhdlscanner.h" - #include "doxygen.h" #include "searchindex.h" -#include <ctype.h> #include "scanner.h" #include "vhdldocgen.h" #include "util.h" #include "bufstr.h" #include "message.h" #include "vhdlcode.h" -#include <qmap.h> #include "entry.h" +#include "config.h" #define YY_NO_INPUT 1 |