summaryrefslogtreecommitdiff
path: root/examples/fastwc
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2001-09-19 19:37:43 +0000
committerWill Estes <wlestes@users.sourceforge.net>2001-09-19 19:37:43 +0000
commit9a4081f734e67bdcf44d378eea6f8f90b4978ecf (patch)
treeadfec1ad58b7b17cc6870d9f4fcaf6352f61978a /examples/fastwc
parent75a2fd64ccaca871257fd678ee0be9b39b6abd1d (diff)
commit the backwash from the branch merges
Diffstat (limited to 'examples/fastwc')
-rw-r--r--examples/fastwc/wc1.l1
-rw-r--r--examples/fastwc/wc2.l1
-rw-r--r--examples/fastwc/wc3.l1
-rw-r--r--examples/fastwc/wc4.l1
-rw-r--r--examples/fastwc/wc5.l1
5 files changed, 5 insertions, 0 deletions
diff --git a/examples/fastwc/wc1.l b/examples/fastwc/wc1.l
index d6696bc..0d4fcf2 100644
--- a/examples/fastwc/wc1.l
+++ b/examples/fastwc/wc1.l
@@ -3,6 +3,7 @@
ws [ \t]
nonws [^ \t\n]
+%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
diff --git a/examples/fastwc/wc2.l b/examples/fastwc/wc2.l
index bd63cd4..0da9953 100644
--- a/examples/fastwc/wc2.l
+++ b/examples/fastwc/wc2.l
@@ -4,6 +4,7 @@ ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
+%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
diff --git a/examples/fastwc/wc3.l b/examples/fastwc/wc3.l
index 7c5f2e2..3cc5d57 100644
--- a/examples/fastwc/wc3.l
+++ b/examples/fastwc/wc3.l
@@ -5,6 +5,7 @@ nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
+%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
diff --git a/examples/fastwc/wc4.l b/examples/fastwc/wc4.l
index cbe56f6..90c36ee 100644
--- a/examples/fastwc/wc4.l
+++ b/examples/fastwc/wc4.l
@@ -5,6 +5,7 @@ nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
+%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
diff --git a/examples/fastwc/wc5.l b/examples/fastwc/wc5.l
index 8fe17b6..c479480 100644
--- a/examples/fastwc/wc5.l
+++ b/examples/fastwc/wc5.l
@@ -5,6 +5,7 @@ nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
+%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;