Files
asterisk/utils/clicompat.c
T

34 lines
703 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:32:17 +00:00
int ast_register_atexit(void (*func)(void));
int ast_register_atexit(void (*func)(void))
{
return 0;
}
2015-03-26 23:09:04 +00:00
int ast_register_cleanup(void (*func)(void));
int ast_register_cleanup(void (*func)(void))
{
return 0;
}
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:32:17 +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;
}