summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/krt-set.Y
diff options
context:
space:
mode:
Diffstat (limited to 'sysdep/unix/krt-set.Y')
-rw-r--r--sysdep/unix/krt-set.Y29
1 files changed, 0 insertions, 29 deletions
diff --git a/sysdep/unix/krt-set.Y b/sysdep/unix/krt-set.Y
deleted file mode 100644
index 551ee16..0000000
--- a/sysdep/unix/krt-set.Y
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * BIRD -- UNIX Kernel Syncer Configuration
- *
- * (c) 1998--1999 Martin Mares <mj@ucw.cz>
- *
- * Can be freely distributed and used under the terms of the GNU GPL.
- */
-
-CF_HDR
-
-#include "lib/krt-scan.h"
-
-CF_DECLS
-
-CF_KEYWORDS(PERSIST)
-
-CF_GRAMMAR
-
-CF_ADDTO(kern_proto, kern_proto krt_set_item ';')
-
-krt_set_item:
- PERSIST bool {
- ((struct krt_config *) this_proto)->setopt.persist = $2;
- }
- ;
-
-CF_CODE
-
-CF_END