diff options
Diffstat (limited to 'programs/starter')
-rw-r--r-- | programs/starter/lex.yy.c | 6 | ||||
-rw-r--r-- | programs/starter/parser.tab.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/programs/starter/lex.yy.c b/programs/starter/lex.yy.c index 1626f1050..20d2edb08 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: parser.l,v 1.5 2006/03/28 22:32:33 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 diff --git a/programs/starter/parser.tab.c b/programs/starter/parser.tab.c index bc21a2fd3..7b2349e76 100644 --- a/programs/starter/parser.tab.c +++ b/programs/starter/parser.tab.c @@ -99,7 +99,7 @@ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * - * RCSID $Id: parser.tab.c,v 1.5 2006/03/28 22:32:49 as Exp $ + * RCSID $Id: parser.y,v 1.6 2006/01/17 23:43:36 as Exp $ */ #include <stdio.h> |