diff options
author | Stephen Hemminger <stephen@networkplumber.org> | 2018-08-20 16:01:01 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen@networkplumber.org> | 2018-08-20 16:01:01 -0700 |
commit | 51070e8f18771bec12e3702e1ce6f6eb6503a503 (patch) | |
tree | e545469b1d7c648b678495f48f245ed89d740e45 /genl/genl_utils.h | |
parent | cf7fe23859cd53740febce137d29f080efefd64c (diff) |
genl: drop extern from function prototypes
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Diffstat (limited to 'genl/genl_utils.h')
-rw-r--r-- | genl/genl_utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/genl/genl_utils.h b/genl/genl_utils.h index 6e6f4450..3de0da34 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 |