diff options
Diffstat (limited to 'programs/starter/lex.yy.c')
-rw-r--r-- | programs/starter/lex.yy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/starter/lex.yy.c b/programs/starter/lex.yy.c index 1626f1050..2c0dd040a 100644 --- a/programs/starter/lex.yy.c +++ b/programs/starter/lex.yy.c @@ -497,7 +497,7 @@ char *yytext; * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * - * RCSID $Id: lex.yy.c,v 1.4 2006/03/28 22:32:49 as Exp $ + * RCSID $Id: lex.yy.c,v 1.6 2007/01/14 18:37:25 as Exp $ */ #include <string.h> @@ -1706,10 +1706,10 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ -YY_BUFFER_STATE yy_scan_string (yyconst char * __yystr ) +YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { - return yy_scan_bytes(__yystr,strlen(__yystr) ); + return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will |