diff options
author | Anders Broman <anders.broman@ericsson.com> | 2014-01-02 11:27:10 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2014-01-02 11:27:10 +0000 |
commit | 3cb2c58eaf5472ffe979b30d1c7b10908546e40c (patch) | |
tree | 83f213eef3c863aa2063291988851eca940d3ac9 /plugins/wimax/msg_dcd.c | |
parent | 558c885d6ddb4791d47ea3063a3570eb99291f73 (diff) | |
download | wireshark-3cb2c58eaf5472ffe979b30d1c7b10908546e40c.tar.gz wireshark-3cb2c58eaf5472ffe979b30d1c7b10908546e40c.tar.bz2 wireshark-3cb2c58eaf5472ffe979b30d1c7b10908546e40c.zip |
Fix [-Wmissing-prototypes]
svn path=/trunk/; revision=54552
Diffstat (limited to 'plugins/wimax/msg_dcd.c')
-rw-r--r-- | plugins/wimax/msg_dcd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/wimax/msg_dcd.c b/plugins/wimax/msg_dcd.c index ec4e81aa05..7cc3e9a9dd 100644 --- a/plugins/wimax/msg_dcd.c +++ b/plugins/wimax/msg_dcd.c @@ -42,6 +42,9 @@ /* Delete the following variable as soon as possible */ extern gboolean include_cor2_changes; +void proto_register_mac_mgmt_msg_dcd(void); +void proto_reg_handoff_mac_mgmt_msg_dcd(void); + static gint proto_mac_mgmt_msg_dcd_decoder = -1; static gint ett_mac_mgmt_msg_dcd_decoder = -1; |