summaryrefslogtreecommitdiffstats
path: root/nest/proto.c
blob: ff75d94a1e0a7ea944df36958aa1c47f34acd862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *	BIRD -- Protocols
 *
 *	(c) 1998 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#include "nest/bird.h"
#include "nest/protocol.h"
#include "lib/resource.h"
#include "lib/lists.h"

list proto_list;

void
proto_init(void)
{
  init_list(&proto_list);
}