Check-in Number:
|
5006 | |
Date: |
2005-Feb-03 10:42:36 (local)
2005-Feb-03 09:42:36 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fix compile warnings for Flex generation code by using the
%options nounput, noyy_top_state and nounistd. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/l2/ChangeLog 1.22 -> 1.23
--- ChangeLog 2005/02/03 09:41:38 1.22
+++ ChangeLog 2005/02/03 09:42:36 1.23
@@ -10,6 +10,10 @@
=========
Changes between 0.9.9 and 0.9.10 (01-Feb-2005 to 03-Feb-2005)
+
+ *) Fix compile warnings for Flex generation code by using the
+ %options nounput, noyy_top_state and nounistd.
+ [Ralf S. Engelschall <rse@engelschall.com>]
*) Fix compile warnings related to sigaction()'s sa_handler.
[Ralf S. Engelschall <rse@engelschall.com>]
|
|
ossp-pkg/l2/l2_spec_scan.l 1.14 -> 1.15
--- l2_spec_scan.l 2005/01/24 15:03:18 1.14
+++ l2_spec_scan.l 2005/02/03 09:42:36 1.15
@@ -63,6 +63,9 @@
%option bison-locations
%option never-interactive
%option noyywrap
+%option nounput
+%option noyy_top_state
+%option nounistd
/* scanner states */
%x SS_PARAM
|
|