From: Stephen Hemminger Date: Mon, 10 Sep 2018 18:53:07 +0000 (-0700) Subject: genl: remove unnecessary extern X-Git-Tag: v4.19.0~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae775666cf7d30f1fc7857152298af44114f3d19;p=thirdparty%2Fiproute2.git genl: remove unnecessary extern extern not necessary on function prototype. Signed-off-by: Stephen Hemminger --- diff --git a/include/libgenl.h b/include/libgenl.h index cd13f4761..656493a2c 100644 --- a/include/libgenl.h +++ b/include/libgenl.h @@ -21,8 +21,8 @@ struct { \ }, \ } -extern int genl_resolve_family(struct rtnl_handle *grth, const char *family); -extern int genl_init_handle(struct rtnl_handle *grth, const char *family, - int *genl_family); +int genl_resolve_family(struct rtnl_handle *grth, const char *family); +int genl_init_handle(struct rtnl_handle *grth, const char *family, + int *genl_family); #endif /* __LIBGENL_H__ */