Files
asterisk/utils/clicompat.c
T

17 lines
358 B
C
Raw Normal View History

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-10-17 20:06:28 +00:00
struct ast_cli_entry {
char * const cmda; /* just something to satisfy compile & link; will never be used */
};
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-10-17 20:06:28 +00:00
return 0;
}
2007-10-17 20:06:28 +00:00