summaryrefslogtreecommitdiffstats
path: root/src/tclscanner.l
diff options
context:
space:
mode:
authorAdrian Negreanu <adrian.m.negreanu@intel.com>2015-05-05 15:50:02 (GMT)
committerAdrian Negreanu <adrian.m.negreanu@intel.com>2015-05-15 16:34:41 (GMT)
commit1dd0cf03f5bf173fa4ac3bb8279d12fff1b98eb7 (patch)
tree36e6bd260d45aa8e81c796c6a723d28ac0f11d02 /src/tclscanner.l
parent45ebb6ff4846255ad7209e3bec7cd4fe0544ffd5 (diff)
downloadDoxygen-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/tclscanner.l')
-rw-r--r--src/tclscanner.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclscanner.l b/src/tclscanner.l
index 7befd40..5e249a6 100644
--- a/src/tclscanner.l
+++ b/src/tclscanner.l
@@ -14,12 +14,12 @@
* input used in their production; they are not affected by this license.
*
*/
+%option never-interactive
%{
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
-#include <unistd.h>
#include <qstring.h>
#include <qstringlist.h>
@@ -51,8 +51,8 @@
#include "namespacedef.h"
#include "filedef.h"
-#define YY_NEVER_INTERACTIVE 1
#define YY_NO_INPUT 1
+#define YY_NO_UNISTD_H 1
#define MAX_INCLUDE_DEPTH 10