From owner-svn-src-head@FreeBSD.ORG Tue Oct 6 20:21:58 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 4A10C1065693; Tue, 6 Oct 2009 20:21:58 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 22BD68FC14; Tue, 6 Oct 2009 20:21:58 +0000 (UTC) Received: from [192.168.2.101] (host81-155-13-237.range81-155.btcentralplus.com [81.155.13.237]) by cyrus.watson.org (Postfix) with ESMTPSA id 30A2346B03; Tue, 6 Oct 2009 16:21:57 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v1076) Content-Type: text/plain; charset=iso-8859-1; format=flowed; delsp=yes From: "Robert N. M. Watson" In-Reply-To: <4ACB9A21.10502@FreeBSD.org> Date: Tue, 6 Oct 2009 21:21:53 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <1A174135-001D-4550-B3E7-84EAA69A2169@FreeBSD.org> References: <200910061405.n96E5vsq049153@svn.freebsd.org> <4ACB9A21.10502@FreeBSD.org> To: Gabor Kovesdan X-Mailer: Apple Mail (2.1076) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r197804 - in head: include lib/libc/gen 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: Tue, 06 Oct 2009 20:21:58 -0000 On 6 Oct 2009, at 20:27, Gabor Kovesdan wrote: > Robert Watson escribi=F3: >> + >> +char * >> +basename(path) >> + const char *path; >> +{ >> + static char *bname =3D NULL; >> + >> > Sorry if it's a trivial question but isn't ANSI prototype preferred =20= > over K&R function definition? For the purposes of this purely functional change, I maintained the =20 existing style in the file, which was K&R. Robert=