[Redbutton-devel] SF.net SVN: redbutton: [347] redbutton-author/trunk
Brought to you by:
skilvington
|
From: <ski...@us...> - 2007-08-24 13:36:11
|
Revision: 347
http://redbutton.svn.sourceforge.net/redbutton/?rev=347&view=rev
Author: skilvington
Date: 2007-08-24 06:36:03 -0700 (Fri, 24 Aug 2007)
Log Message:
-----------
fix a compiler warning
Modified Paths:
--------------
redbutton-author/trunk/ccc.y
redbutton-author/trunk/parser.y.header
Modified: redbutton-author/trunk/ccc.y
===================================================================
--- redbutton-author/trunk/ccc.y 2007-08-24 10:15:03 UTC (rev 346)
+++ redbutton-author/trunk/ccc.y 2007-08-24 13:36:03 UTC (rev 347)
@@ -52,6 +52,7 @@
} state;
int yyparse(void);
+int yylex(void);
void usage(char *);
void fatal(char *);
Modified: redbutton-author/trunk/parser.y.header
===================================================================
--- redbutton-author/trunk/parser.y.header 2007-08-24 10:15:03 UTC (rev 346)
+++ redbutton-author/trunk/parser.y.header 2007-08-24 13:36:03 UTC (rev 347)
@@ -6,6 +6,8 @@
#define YYERROR_VERBOSE
#define YYDEBUG 1
+int yylex(void);
+
int yylineno = 1;
void
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|