summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/krt-iface.Y
diff options
context:
space:
mode:
Diffstat (limited to 'sysdep/unix/krt-iface.Y')
-rw-r--r--sysdep/unix/krt-iface.Y30
1 files changed, 0 insertions, 30 deletions
diff --git a/sysdep/unix/krt-iface.Y b/sysdep/unix/krt-iface.Y
deleted file mode 100644
index c74eb02..0000000
--- a/sysdep/unix/krt-iface.Y
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * BIRD -- UNIX Interface 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-scan.h"
-
-CF_DECLS
-
-CF_KEYWORDS(LEARN, ROUTE, SCAN, TIME)
-
-CF_GRAMMAR
-
-CF_ADDTO(kern_proto, kern_proto krt_if_item ';')
-
-krt_if_item:
- SCAN TIME expr {
- /* Scan time of 0 means scan on startup only */
- ((struct krt_config *) this_proto)->ifopt.scan_time = $3;
- }
- ;
-
-CF_CODE
-
-CF_END