From: Stephen Hemminger Date: Mon, 20 Aug 2018 23:01:01 +0000 (-0700) Subject: genl: drop extern from function prototypes X-Git-Tag: v4.19.0~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51070e8f18771bec12e3702e1ce6f6eb6503a503;p=thirdparty%2Fiproute2.git genl: drop extern from function prototypes Signed-off-by: Stephen Hemminger --- diff --git a/genl/genl_utils.h b/genl/genl_utils.h index 6e6f44501..3de0da34b 100644 --- a/genl/genl_utils.h +++ b/genl/genl_utils.h @@ -10,9 +10,10 @@ struct genl_util struct genl_util *next; char name[16]; int (*parse_genlopt)(struct genl_util *fu, int argc, char **argv); - int (*print_genlopt)(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg); + int (*print_genlopt)(const struct sockaddr_nl *who, + struct nlmsghdr *n, void *arg); }; -extern int genl_ctrl_resolve_family(const char *family); +int genl_ctrl_resolve_family(const char *family); #endif