[Asterisk-cvs] asterisk ast_expr.y,1.1.1.1,1.2

markster at lists.digium.com markster at lists.digium.com
Thu Sep 18 20:19:13 CDT 2003


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv26315

Modified Files:
	ast_expr.y 
Log Message:
Code cleanups (bug #66)


Index: ast_expr.y
===================================================================
RCS file: /usr/cvsroot/asterisk/ast_expr.y,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ast_expr.y	12 Feb 2003 13:59:13 -0000	1.1.1.1
+++ ast_expr.y	19 Sep 2003 01:20:22 -0000	1.2
@@ -79,17 +79,20 @@
 static quad_t		to_integer __P((struct val *));
 static void		to_string __P((struct val *));
 static int		ast_yyerror __P((const char *));
-static int		ast_yylex __P(());
 %}
 
 %pure-parser
 /* %name-prefix="ast_yy" */
 
-
 %union
 {
 	struct val *val;
 }
+
+%{
+static int		ast_yylex __P((YYSTYPE *, struct parser_control *));
+%}
+
 
 %left <val> '|'
 %left <val> '&'




More information about the svn-commits mailing list