Date: Sun, 29 Sep 2002 10:15:56 +1000 (EST) From: Bruce Evans <bde@zeta.org.au> To: Poul-Henning Kamp <phk@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, <cvs-all@FreeBSD.org> Subject: Re: cvs commit: src/sys/cam/scsi scsi_cd.c scsi_ch.c scsi_low.c scsi_ses.c src/sys/ddb db_input.c db_watch.c src/sys/dev/advansys advansys.c src/sys/dev/aic aic.c src/sys/dev/aic7xxx aic7x Message-ID: <20020929101051.Q39375-100000@gamplex.bde.org> In-Reply-To: <200209281715.g8SHFdHm060297@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 28 Sep 2002, Poul-Henning Kamp wrote: > phk 2002/09/28 10:15:39 PDT > > Modified files: > sys/cam/scsi scsi_cd.c scsi_ch.c scsi_low.c scsi_ses.c > sys/ddb db_input.c db_watch.c > .... > sys/vm swap_pager.c uma_core.c vm_glue.c > vnode_pager.c > Log: > Be consistent about "static" functions: if the function is marked > static in its prototype, mark it static at the definition too. > > Inspired by: FlexeLint warning #512 This just fixes style bugs. It is a "feature" of C that storage and linkage declarators can sometimes be left out and/or added to in new declarations (usually in cases where this is least useful, especially when combined with gcc's -Wredundant-decls which tends to warn about all the cases which might be useful because they aren't actually redundant). Lots of these style bugs were created by sloppy staticization. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020929101051.Q39375-100000>