From owner-cvs-all Thu Feb 8 9:39: 3 2001 Delivered-To: cvs-all@freebsd.org Received: from enterprise.atl.lmco.com (mail.atl.external.lmco.com [192.35.37.50]) by hub.freebsd.org (Postfix) with ESMTP id 7743437B491 for ; Thu, 8 Feb 2001 09:38:46 -0800 (PST) Received: from paulsboro.ATL.LMCO.COM (paulsboro [166.17.244.95]) by enterprise.atl.lmco.com (Postfix) with ESMTP id 6E730C1D0F; Thu, 8 Feb 2001 12:38:42 -0500 (EST) Received: (from mprice@localhost) by paulsboro.ATL.LMCO.COM (8.9.3+Sun/8.9.1) id MAA04085; Thu, 8 Feb 2001 12:38:42 -0500 (EST) Date: Thu, 8 Feb 2001 12:38:42 -0500 From: Michael Price To: Bruce Evans Cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/lam lam.c Message-ID: <20010208123842.B4074@atl.lmco.com> References: <200102080649.f186n9C50045@gratis.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bde@zeta.org.au on Fri, Feb 09, 2001 at 03:13:28AM +1100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Feb 09, 2001 at 03:13:28AM +1100, Bruce Evans wrote: > > Spaces after function names is not good, I agree, and the **argv --> > > *argv[] thing should happen. > > I hope you mean backing out of the *argv[] -> **argv thing. I normally > use **argv, but both style(9) and the ISO C standard use *argv[]. From a ISO C standard point of view, both int main(int argc, char** argv) and int main(int argc, char* argv[]) are just fine. This is purely a question of style. There is no ISO C issue. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message