Subject: Re: usr.bin/make
To: None <tech-toolchain@netbsd.org>
From: Christos Zoulas <christos@tac.gw.com>
List: tech-toolchain
Date: 01/31/2005 19:58:00
In article <hf4qgxc1fp.fsf@multivac.sdsc.edu>,
Max Okumoto <okumoto@ucsd.edu> wrote:
>The following two attachments are a script that and the diffs
>generated by that script. The script does the following:
>
> * removes spaces between function name and parameters.
> funcname (1, 2, 3) => funcname(1, 2, 3)
that is fine.
> * removes (void) from in front of unsed return
> values of functions.
> (void)funcname(1, 2) => funcname(1, 2)
that breaks lint. Why do you want to do it?
christos