diff options
author | Martin Mares <mj@ucw.cz> | 1999-11-25 16:34:51 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-11-25 16:34:51 +0100 |
commit | 35793769273f7286aafa0455547d1d7cfeef3931 (patch) | |
tree | 17a7c986279fd35e952a52d63b85359859b378d4 /nest | |
parent | ea32afb765381e642a525409a8f6cdff99aa0225 (diff) | |
download | bird-35793769273f7286aafa0455547d1d7cfeef3931.tar bird-35793769273f7286aafa0455547d1d7cfeef3931.zip |
cli_msg() moved to cli.h, so that it can be used outside the parser.
Diffstat (limited to 'nest')
-rw-r--r-- | nest/cli.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -41,6 +41,7 @@ extern struct cli *this_cli; /* Used during parsing */ /* Functions to be called by command handlers */ void cli_printf(cli *, int, char *, ...); +#define cli_msg(x...) cli_printf(this_cli, x) /* Functions provided to sysdep layer */ |