summaryrefslogtreecommitdiffstats
path: root/proto/ospf/ospf.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2004-05-31 22:53:22 +0200
committerMartin Mares <mj@ucw.cz>2004-05-31 22:53:22 +0200
commitd83faf8dc441259183d87c6669e76e4addc61b21 (patch)
treed46cb42a78e239325343bcc239382e55b7237939 /proto/ospf/ospf.c
parent7deffd845a0f2bfe4cebbb01e0505314af32693a (diff)
downloadbird-d83faf8dc441259183d87c6669e76e4addc61b21.tar
bird-d83faf8dc441259183d87c6669e76e4addc61b21.zip
static declarations don't belong to includes. (And most of them were
redundant anyway.)
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r--proto/ospf/ospf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 8229d09..9626ab8 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -70,6 +70,9 @@
#include "ospf.h"
+static int ospf_rte_better(struct rte *new, struct rte *old);
+static int ospf_rte_same(struct rte *new, struct rte *old);
+
static int
ospf_start(struct proto *p)
{