From owner-svn-src-head@freebsd.org Sat Mar 18 20:41:09 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EAA2D12AAE; Sat, 18 Mar 2017 20:41:09 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C23001E4D; Sat, 18 Mar 2017 20:41:08 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2IKf75O024471; Sat, 18 Mar 2017 20:41:07 GMT (envelope-from jilles@FreeBSD.org) Received: (from jilles@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2IKf72J024470; Sat, 18 Mar 2017 20:41:07 GMT (envelope-from jilles@FreeBSD.org) Message-Id: <201703182041.v2IKf72J024470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jilles set sender to jilles@FreeBSD.org using -f From: Jilles Tjoelker Date: Sat, 18 Mar 2017 20:41:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r315511 - head/bin/sh X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Mar 2017 20:41:09 -0000 Author: jilles Date: Sat Mar 18 20:41:07 2017 New Revision: 315511 URL: https://svnweb.freebsd.org/changeset/base/315511 Log: sh: Remove unused function declaration for arith_lex_reset(). Reported by: Robert Elz Modified: head/bin/sh/arith.h Modified: head/bin/sh/arith.h ============================================================================== --- head/bin/sh/arith.h Sat Mar 18 20:16:23 2017 (r315510) +++ head/bin/sh/arith.h Sat Mar 18 20:41:07 2017 (r315511) @@ -35,4 +35,3 @@ #define DIGITS(var) (3 + (2 + CHAR_BIT * sizeof((var))) / 3) arith_t arith(const char *); -void arith_lex_reset(void);