clicompat.c 339 B

1234567891011121314151617
  1. /*
  2. * Stubs for some cli functions used by the test routines.
  3. * $Revision$
  4. */
  5. void ast_cli(int fd, const char *fmt, ...);
  6. void ast_cli(int fd, const char *fmt, ...)
  7. {
  8. }
  9. struct ast_cli_entry;
  10. int ast_cli_register_multiple(struct ast_cli_entry *e, int len);
  11. int ast_cli_register_multiple(struct ast_cli_entry *e, int len)
  12. {
  13. return 0;
  14. }