From owner-svn-src-head@FreeBSD.ORG Thu Mar 18 00:27:18 2010 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 2DC771065670; Thu, 18 Mar 2010 00:27:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1D1F38FC0A; Thu, 18 Mar 2010 00:27:18 +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 o2I0RICw061988; Thu, 18 Mar 2010 00:27:18 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o2I0RHEu061985; Thu, 18 Mar 2010 00:27:17 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201003180027.o2I0RHEu061985@svn.freebsd.org> From: Xin LI Date: Thu, 18 Mar 2010 00:27:17 +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: r205273 - head/lib/libstand 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: Thu, 18 Mar 2010 00:27:18 -0000 Author: delphij Date: Thu Mar 18 00:27:17 2010 New Revision: 205273 URL: http://svn.freebsd.org/changeset/base/205273 Log: Remove two pieces of code (one disabled in revision 39665 and another derived from the first one) that is not used for the last 12 years. Modified: head/lib/libstand/bzipfs.c head/lib/libstand/gzipfs.c Modified: head/lib/libstand/bzipfs.c ============================================================================== --- head/lib/libstand/bzipfs.c Thu Mar 18 00:23:39 2010 (r205272) +++ head/lib/libstand/bzipfs.c Thu Mar 18 00:27:17 2010 (r205273) @@ -81,14 +81,6 @@ struct fs_ops bzipfs_fsops = { }; #endif -#if 0 -void * -calloc(int items, size_t size) -{ - return(malloc(items * size)); -} -#endif - static int bzf_fill(struct bz_file *bzf) { Modified: head/lib/libstand/gzipfs.c ============================================================================== --- head/lib/libstand/gzipfs.c Thu Mar 18 00:23:39 2010 (r205272) +++ head/lib/libstand/gzipfs.c Thu Mar 18 00:27:17 2010 (r205273) @@ -62,14 +62,6 @@ struct fs_ops gzipfs_fsops = { null_readdir }; -#if 0 -void * -calloc(int items, size_t size) -{ - return(malloc(items * size)); -} -#endif - static int zf_fill(struct z_file *zf) {