]> git.baikalelectronics.ru Git - kernel.git/commit
net.h/skbuff.h: Remove extern from function prototypes
authorJoe Perches <joe@perches.com>
Thu, 26 Sep 2013 21:48:15 +0000 (14:48 -0700)
committerJoe Perches <joe@perches.com>
Thu, 26 Sep 2013 21:53:19 +0000 (14:53 -0700)
commit36073382524a5389c2de58ee42613424a7ab8ad9
tree580d04df7eb2576a4d239702c54b6e37b968efad
parent9980680e343b9860e6d9bedc0460772356c9e841
net.h/skbuff.h: Remove extern from function prototypes

There are a mix of function prototypes with and without extern
in the kernel sources.  Standardize on not using extern for
function prototypes.

Function prototypes don't need to be written with extern.
extern is assumed by the compiler.  Its use is as unnecessary as
using auto to declare automatic/local variables in a block.

Signed-off-by: Joe Perches <joe@perches.com>
include/linux/net.h
include/linux/skbuff.h