genl: drop extern from function prototypes

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Stephen Hemminger 2018-08-20 16:01:01 -07:00
parent cf7fe23859
commit 51070e8f18

View File

@ -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