mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 04:43:50 +00:00
* Add ast_register_cleanup to utils/clicompat.c to deal with any utils that copy sources from main. * Asterisk 13+: remove unused variables from core_local.c. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@433499 65c4cc65-6c06-0410-ace0-fbb531ad65f3
34 lines
699 B
C
34 lines
699 B
C
/*
|
|
* Stubs for some cli functions used by the test routines.
|
|
* $Revision$
|
|
*/
|
|
void ast_cli(int fd, const char *fmt, ...);
|
|
void ast_cli(int fd, const char *fmt, ...)
|
|
{
|
|
}
|
|
|
|
struct ast_cli_entry;
|
|
|
|
int ast_register_atexit(void (*func)(void));
|
|
int ast_register_atexit(void (*func)(void))
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
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)
|
|
{
|
|
return 0;
|
|
}
|
|
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;
|
|
}
|