summaryrefslogtreecommitdiffstats
path: root/zebra/redistribute.h
diff options
context:
space:
mode:
authorpaul <paul>2005-06-28 19:17:12 +0200
committerpaul <paul>2005-06-28 19:17:12 +0200
commita1ac18c4d5b4f8f4f279efb2ae12b46258f22282 (patch)
treee37732ef4b00ae98d1be693e721b01cc2566ba39 /zebra/redistribute.h
parent2005-06-28 Paul Jakma <paul.jakma@sun.com> (diff)
downloadfrr-a1ac18c4d5b4f8f4f279efb2ae12b46258f22282.tar.xz
frr-a1ac18c4d5b4f8f4f279efb2ae12b46258f22282.zip
2005-06-28 Paul Jakma <paul.jakma@sun.com>
* (global) Extern and static'ification, with related fixups of declarations, ensuring files include their own headers, etc. if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in list loop
Diffstat (limited to 'zebra/redistribute.h')
-rw-r--r--zebra/redistribute.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/zebra/redistribute.h b/zebra/redistribute.h
index 14b92b0d5..9e78dfdee 100644
--- a/zebra/redistribute.h
+++ b/zebra/redistribute.h
@@ -26,25 +26,25 @@
#include "table.h"
#include "zserv.h"
-void zebra_redistribute_add (int, struct zserv *, int);
-void zebra_redistribute_delete (int, struct zserv *, int);
+extern void zebra_redistribute_add (int, struct zserv *, int);
+extern void zebra_redistribute_delete (int, struct zserv *, int);
-void zebra_redistribute_default_add (int, struct zserv *, int);
-void zebra_redistribute_default_delete (int, struct zserv *, int);
+extern void zebra_redistribute_default_add (int, struct zserv *, int);
+extern void zebra_redistribute_default_delete (int, struct zserv *, int);
-void redistribute_add (struct prefix *, struct rib *);
-void redistribute_delete (struct prefix *, struct rib *);
+extern void redistribute_add (struct prefix *, struct rib *);
+extern void redistribute_delete (struct prefix *, struct rib *);
-void zebra_interface_up_update (struct interface *);
-void zebra_interface_down_update (struct interface *);
+extern void zebra_interface_up_update (struct interface *);
+extern void zebra_interface_down_update (struct interface *);
-void zebra_interface_add_update (struct interface *);
-void zebra_interface_delete_update (struct interface *);
+extern void zebra_interface_add_update (struct interface *);
+extern void zebra_interface_delete_update (struct interface *);
-void zebra_interface_address_add_update (struct interface *,
- struct connected *);
-void zebra_interface_address_delete_update (struct interface *,
- struct connected *c);
+extern void zebra_interface_address_add_update (struct interface *,
+ struct connected *);
+extern void zebra_interface_address_delete_update (struct interface *,
+ struct connected *c);
#endif /* _ZEBRA_REDISTRIBUTE_H */