From owner-svn-src-head@freebsd.org Sun Sep 20 20:26:47 2015 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 876D9A061E5; Sun, 20 Sep 2015 20:26:47 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 6B0E5146F; Sun, 20 Sep 2015 20:26:47 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8KKQlBK084921; Sun, 20 Sep 2015 20:26:47 GMT (envelope-from rodrigc@FreeBSD.org) Received: (from rodrigc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8KKQluJ084920; Sun, 20 Sep 2015 20:26:47 GMT (envelope-from rodrigc@FreeBSD.org) Message-Id: <201509202026.t8KKQluJ084920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigc set sender to rodrigc@FreeBSD.org using -f From: Craig Rodrigues Date: Sun, 20 Sep 2015 20:26:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r288031 - head/lib/libc/stdio 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.20 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: Sun, 20 Sep 2015 20:26:47 -0000 Author: rodrigc Date: Sun Sep 20 20:26:46 2015 New Revision: 288031 URL: https://svnweb.freebsd.org/changeset/base/288031 Log: Remove names from some prototypes Modified: head/lib/libc/stdio/_flock_stub.c Modified: head/lib/libc/stdio/_flock_stub.c ============================================================================== --- head/lib/libc/stdio/_flock_stub.c Sun Sep 20 20:24:28 2015 (r288030) +++ head/lib/libc/stdio/_flock_stub.c Sun Sep 20 20:26:46 2015 (r288031) @@ -55,8 +55,8 @@ __weak_reference(_flockfile_debug_stub, __weak_reference(_ftrylockfile, ftrylockfile); __weak_reference(_funlockfile, funlockfile); -void _flockfile_debug_stub(FILE *fp, char *fname, int lineno); -int _ftrylockfile(FILE *fp); +void _flockfile_debug_stub(FILE *, char *, int); +int _ftrylockfile(FILE *); void _flockfile(FILE *fp)