From: Adriaan de Groot Date: Thu, 18 Jan 2018 11:06:33 +0000 (-0500) Subject: Pulley: declare yylex X-Git-Url: http://git.arpa2.org/?p=steamworks;a=commitdiff_plain;h=114cb4e21cc412a92231a512b15cb0597e0695f2 Pulley: declare yylex - fixes a compiler warning about undeclared yylex --- diff --git a/src/pulley/pulleyscript/pulley.yacc b/src/pulley/pulleyscript/pulley.yacc index effb442..0d0da2c 100644 --- a/src/pulley/pulleyscript/pulley.yacc +++ b/src/pulley/pulleyscript/pulley.yacc @@ -25,7 +25,7 @@ %{ -// int yylex (YYSTYPE *yylval_param, yyscan_t yyscanner); +int yylex (YYSTYPE *yylval_param, yyscan_t yyscanner); void yyerror (struct parser *,char *); #define YYLEX_PARAM &yylval, prs->lexer