mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 07:01:09 +00:00
Also covers ast_app_parse_timelen-fail-zero-length.patch, but the patch was replaced with one of my own. (issue ASTERISK-22467) Reported by: Corey Farrell Patches: chan_dahdi-cleanup_push.patch uploaded by coreyfarrell (license 5909) clicompat-r2.patch uploaded by coreyfarrell (license 5909) codecs-ilbc-doCPLC.patch uploaded by coreyfarrell (license 5909) data-cleanup-test-registration.patch uploaded by coreyfarrell (license 5909) main-asterisk-kill-listener.patch uploaded by coreyfarrell (license 5909) ........ Merged revisions 401704 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 401705 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 401706 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@401707 65c4cc65-6c06-0410-ace0-fbb531ad65f3
27 lines
591 B
C
27 lines
591 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_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;
|
|
}
|