summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/krt.Y
blob: 7711f3ba7944327558a96058680d31b9f17a8d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 *	BIRD -- UNIX Kernel Syncer Configuration
 *
 *	(c) 1998 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

CF_HDR

#include "lib/krt.h"

CF_DECLS

CF_KEYWORDS(KERNEL)

CF_GRAMMAR

/* Kernel protocol */

CF_ADDTO(proto, kern_proto '}')

kern_proto_start: proto_start KERNEL {
     if (!(this_proto = cf_krt)) cf_error("Kernel protocol already defined");
     cf_krt = NULL;
   }
 ;

CF_ADDTO(kern_proto, kern_proto_start '{')
CF_ADDTO(kern_proto, kern_proto proto_item ';')

CF_CODE

CF_END