diff options
author | Joe Perches <joe@perches.com> | 2013-09-21 10:22:41 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-21 14:01:38 -0400 |
commit | 1fd51155387264e3ca72094abadcaadb3f5969f6 (patch) | |
tree | 3764f7faaa6ff3e8511fb77049da5a6a50380cc0 /include/net/inet_sock.h | |
parent | e60ab84dd59cc0ddb46a7696a56f9de8b8b22f39 (diff) | |
download | linux-1fd51155387264e3ca72094abadcaadb3f5969f6.tar.gz linux-1fd51155387264e3ca72094abadcaadb3f5969f6.tar.bz2 linux-1fd51155387264e3ca72094abadcaadb3f5969f6.zip |
inet*.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>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_sock.h')
-rw-r--r-- | include/net/inet_sock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/inet_sock.h b/include/net/inet_sock.h index b21a7f06d6a4..636d203727a2 100644 --- a/include/net/inet_sock.h +++ b/include/net/inet_sock.h @@ -199,11 +199,11 @@ static inline void inet_sk_copy_descendant(struct sock *sk_to, } #endif -extern int inet_sk_rebuild_header(struct sock *sk); +int inet_sk_rebuild_header(struct sock *sk); extern u32 inet_ehash_secret; extern u32 ipv6_hash_secret; -extern void build_ehash_secret(void); +void build_ehash_secret(void); static inline unsigned int inet_ehashfn(struct net *net, const __be32 laddr, const __u16 lport, |