diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-23 08:42:27 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2016-12-01 18:45:22 +0100 |
commit | 2ab402707ff0ebe4b7b87ef0ffb3233e791cb92f (patch) | |
tree | e64c0021cb87628439995e48cf707f7e227bc14f /lib/command_match.c | |
parent | lib: allow all characters in WORD tokens (diff) | |
download | frr-2ab402707ff0ebe4b7b87ef0ffb3233e791cb92f.tar.xz frr-2ab402707ff0ebe4b7b87ef0ffb3233e791cb92f.zip |
lib: move command_parse_format prototype
The function prototype for command_parse_format() is better left in
command.h, so that the bison-generated header file doesn't need to be
included for that.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/command_match.c')
-rw-r--r-- | lib/command_match.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/command_match.c b/lib/command_match.c index 93f898da7..d4996f634 100644 --- a/lib/command_match.c +++ b/lib/command_match.c @@ -25,7 +25,6 @@ #include <zebra.h> #include "command_match.h" -#include "command_parse.h" #include "memory.h" DEFINE_MTYPE_STATIC(LIB, CMD_TOKENS, "Command Tokens") |