| 123456789101112131415 | Description: Add prototype to avoid a compiler warningAuthor: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>Bug: https://bitbucket.org/ripencc/bgpdump/issues/27/Last-Update: 2016-07-18--- a/bgpdump_lib.c+++ b/bgpdump_lib.c@@ -42,6 +42,7 @@ #include <assert.h>  void	  bgpdump_free_attr(attributes_t *attr);+int       process_mrtd_bgp(struct mstream *s, BGPDUMP_ENTRY *entry); static    int process_mrtd_table_dump(struct mstream *s,BGPDUMP_ENTRY *entry); static    int process_mrtd_table_dump_v2(struct mstream *s,BGPDUMP_ENTRY *entry); static    int process_mrtd_table_dump_v2_peer_index_table(struct mstream *s,BGPDUMP_ENTRY *entry);
 |