blob: 53e7d6e9030db62472ffe8db5a234837bf6bf140 (
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
protos_init(void)
{
init_list(&proto_list);
}
|