summaryrefslogtreecommitdiff
path: root/scan.l
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2002-07-10 00:04:36 +0000
committerJohn Millaway <john43@users.sourceforge.net>2002-07-10 00:04:36 +0000
commiteab63f4d16533532355729b34762daa28a69fce1 (patch)
tree6786f4d5389fdcc830b1268e054267c83e147aa3 /scan.l
parent93cb3f65dd9dca2a3a0d8b358e25d0866f1917f2 (diff)
Fixed prefix issue with get/set debug functions.
Fixed prefix issues with memory functions.
Diffstat (limited to 'scan.l')
-rw-r--r--scan.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/scan.l b/scan.l
index f8c6c8a..df8a919 100644
--- a/scan.l
+++ b/scan.l
@@ -286,9 +286,9 @@ LEXOPT [aceknopr]
yy_scan_bytes ACTION_IFDEF("YY_NO_SCAN_BYTES", ! option_sense);
yy_scan_string ACTION_IFDEF("YY_NO_SCAN_STRING", ! option_sense);
- yy_flex_alloc ACTION_IFDEF("YY_NO_FLEX_ALLOC", ! option_sense);
- yy_flex_realloc ACTION_IFDEF("YY_NO_FLEX_REALLOC", ! option_sense);
- yy_flex_free ACTION_IFDEF("YY_NO_FLEX_FREE", ! option_sense);
+ yyalloc ACTION_IFDEF("YY_NO_FLEX_ALLOC", ! option_sense);
+ yyrealloc ACTION_IFDEF("YY_NO_FLEX_REALLOC", ! option_sense);
+ yyfree ACTION_IFDEF("YY_NO_FLEX_FREE", ! option_sense);
yyget_debug ACTION_IFDEF("YY_NO_GET_DEBUG", ! option_sense);
yyset_debug ACTION_IFDEF("YY_NO_SET_DEBUG", ! option_sense);