From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Thu, 8 Feb 2007 12:59:21 -0500 From: "Russ Cox" To: 9fans@cse.psu.edu Subject: Re: [9fans] 8c's feature or bug? In-Reply-To: <20070208180145.GA9556@debian> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070208172808.GA9111@debian> <19c957c9b96a78a95e0c7fb973fd89a8@terzarima.net> <20070208180145.GA9556@debian> Topicbox-Message-UUID: 0f2348a0-ead2-11e9-9d60-3106f5b1d025 > I give prototypes of foo and foo1 before use and define them, maybe 8c > just ignore these prototypes when it see the definitions. What Charles said is right: void foo(b) char b; { } void foo(int b); produces no warnings, but void foo(b) char b; { } void foo(char b); does. Russ