From owner-svn-src-stable@FreeBSD.ORG Tue Dec 11 02:40:02 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E23767D; Tue, 11 Dec 2012 02:40:02 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 236398FC15; Tue, 11 Dec 2012 02:40:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBB2e2PK074919; Tue, 11 Dec 2012 02:40:02 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBB2e1Dj074917; Tue, 11 Dec 2012 02:40:01 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201212110240.qBB2e1Dj074917@svn.freebsd.org> From: Kevin Lo Date: Tue, 11 Dec 2012 02:40:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r244108 - stable/9/bin/expr X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Dec 2012 02:40:02 -0000 Author: kevlo Date: Tue Dec 11 02:40:01 2012 New Revision: 244108 URL: http://svnweb.freebsd.org/changeset/base/244108 Log: MFC r235771: Remove redundant declaration of yyparse. Reported by: tinderbox Modified: stable/9/bin/expr/expr.y Directory Properties: stable/9/bin/expr/ (props changed) Modified: stable/9/bin/expr/expr.y ============================================================================== --- stable/9/bin/expr/expr.y Tue Dec 11 01:49:57 2012 (r244107) +++ stable/9/bin/expr/expr.y Tue Dec 11 02:40:01 2012 (r244108) @@ -74,7 +74,6 @@ int to_integer(struct val *); void to_string(struct val *); int yyerror(const char *); int yylex(void); -int yyparse(void); %}