Files
asterisk/utils/clicompat.c
T

27 lines
591 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
2013-10-25 17:29:26 +00:00
int ast_register_atexit(void (*func)(void));
int ast_register_atexit(void (*func)(void))
{
return 0;
}
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;
}
2013-10-25 17:29:26 +00:00
int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len);
int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len)
{
return 0;
}