Files
asterisk/utils/clicompat.c
T

17 lines
339 B
C
Raw Normal View History

2007-12-10 08:35:35 +00:00
/*
* Stubs for some cli functions used by the test routines.
* $Revision$
*/
2007-10-17 20:06:28 +00:00
void ast_cli(int fd, const char *fmt, ...);
void ast_cli(int fd, const char *fmt, ...)
{
}
2007-12-10 08:35:35 +00:00
struct ast_cli_entry;
2007-10-17 20:06:28 +00:00
int ast_cli_register_multiple(struct ast_cli_entry *e, int len);
int ast_cli_register_multiple(struct ast_cli_entry *e, int len)
{
2007-12-10 08:35:35 +00:00
return 0;
}