From 310ab6d7ff9b6ca4c8c1159bdd4eafd63aaf34ba Mon Sep 17 00:00:00 2001 From: bapt Date: Tue, 22 May 2012 16:33:10 +0000 Subject: Fix world after byacc import: - old yacc(1) use to magicially append stdlib.h, while new one don't - new yacc(1) do declare yyparse by itself, fix redundant declaration of 'yyparse' Approved by: des (mentor) --- usr.bin/bc/bc.y | 1 - 1 file changed, 1 deletion(-) (limited to 'usr.bin/bc/bc.y') diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y index 55df7b3..f7425f2 100644 --- a/usr.bin/bc/bc.y +++ b/usr.bin/bc/bc.y @@ -69,7 +69,6 @@ struct tree { ssize_t index; }; -int yyparse(void); int yywrap(void); int fileindex; -- cgit v1.1