diff options
author | Adrian Negreanu <adrian.m.negreanu@intel.com> | 2015-05-05 15:50:02 (GMT) |
---|---|---|
committer | Adrian Negreanu <adrian.m.negreanu@intel.com> | 2015-05-15 16:34:41 (GMT) |
commit | 1dd0cf03f5bf173fa4ac3bb8279d12fff1b98eb7 (patch) | |
tree | 36e6bd260d45aa8e81c796c6a723d28ac0f11d02 /src/commentscan.l | |
parent | 45ebb6ff4846255ad7209e3bec7cd4fe0544ffd5 (diff) | |
download | Doxygen-1dd0cf03f5bf173fa4ac3bb8279d12fff1b98eb7.zip Doxygen-1dd0cf03f5bf173fa4ac3bb8279d12fff1b98eb7.tar.gz Doxygen-1dd0cf03f5bf173fa4ac3bb8279d12fff1b98eb7.tar.bz2 |
drop #include <unistd.h>
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
Diffstat (limited to 'src/commentscan.l')
-rw-r--r-- | src/commentscan.l | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index 54adbd8..3546277 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -12,7 +12,8 @@ * input used in their production; they are not affected by this license. * */ - + +%option never-interactive %{ /* @@ -26,7 +27,6 @@ #include <qarray.h> #include <qstack.h> #include <qregexp.h> -#include <unistd.h> #include <qfile.h> #include "scanner.h" @@ -49,6 +49,7 @@ #include "formula.h" #define YY_NO_INPUT 1 +#define YY_NO_UNISTD_H 1 // forward declarations static bool handleBrief(const QCString &); |