Subject: coding style - extern To: None <current-users@netbsd.org> From: Simon Burge <simonb@netbsd.org> List: current-users Date: 09/08/1999 09:11:07
As a matter of style, should function declarations in header files
(kernel or userland) be proceeded by an "extern"? Ie, which of the
following is ``better'' in a header file?
int foo __P((void));
extern int foo __P((void));
Simon.