From owner-svn-src-head@FreeBSD.ORG Sat Dec 26 13:54:36 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEC271065694; Sat, 26 Dec 2009 13:54:36 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9DCD68FC26; Sat, 26 Dec 2009 13:54:36 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBQDsanQ011873; Sat, 26 Dec 2009 13:54:36 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBQDsZ8e011872; Sat, 26 Dec 2009 13:54:35 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <200912261354.nBQDsZ8e011872@svn.freebsd.org> From: Jilles Tjoelker Date: Sat, 26 Dec 2009 13:54:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201020 - head/bin/sh X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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, 26 Dec 2009 13:54:37 -0000 Author: jilles Date: Sat Dec 26 13:54:34 2009 New Revision: 201020 URL: http://svn.freebsd.org/changeset/base/201020 Log: Remove declaration of function that no longer exists. Modified: head/bin/sh/output.h Modified: head/bin/sh/output.h ============================================================================== --- head/bin/sh/output.h Sat Dec 26 11:36:10 2009 (r201019) +++ head/bin/sh/output.h Sat Dec 26 13:54:34 2009 (r201020) @@ -52,7 +52,6 @@ extern struct output memout; extern struct output *out1; extern struct output *out2; -void open_mem(char *, int, struct output *); void out1str(const char *); void out1qstr(const char *); void out2str(const char *);