From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu From: "Thomas Bushnell, BSG" Message-ID: <87r8mwc6bf.fsf@becket.becket.net> Content-Type: text/plain; charset=us-ascii References: <3.0.6.32.20020308114929.009a27f0@pop3.clear.net.nz> Subject: Re: [9fans] Coding layout query Date: Fri, 8 Mar 2002 09:59:46 +0000 Topicbox-Message-UUID: 61729c6c-eaca-11e9-9e20-41e7f4b1d025 andrew@mbmnz.co.nz (Andrew Simmons) writes: > Not wishing to start a religious debate here, but I notice that in the > Plan9 source code, the return type of a function is placed on a separate > line from the function name when the function is defined: > > int > nurdge(int a) The normal reason for this is that various automatic program scanners will detect this formatting and know that "nurdge" is a function definition. Thomas