This is the mail archive of the
cygwin-patches@cygwin.com
mailing list for the Cygwin project.
Re: [Patch] Testing loads of cygwin1.dll from MinGW and MSVC
- From: Christopher Faylor <cgf-no-personal-reply-please at cygwin dot com>
- To: cygwin-patches at cygwin dot com
- Date: Mon, 6 Jun 2005 16:06:39 -0400
- Subject: Re: [Patch] Testing loads of cygwin1.dll from MinGW and MSVC
- References: <1118084587.5031.128.camel@fulgurite>
- Reply-to: cygwin-patches at cygwin dot com
On Mon, Jun 06, 2005 at 12:03:07PM -0700, Max Kaehn wrote:
>This patch contains a revised version of the "cygload" test utility,
>this time with better adherence to cygwin naming and indentation.
Sorry, Max, but this is still using K&R indentation. Cygwin uses:
if (x)
{
y;
}
not
if (x) {
y;
}
cgf