Skip to content
Snippets Groups Projects
clicompat.c 591 B
Newer Older
  • Learn to ignore specific revisions
  • Luigi Rizzo's avatar
    Luigi Rizzo committed
    /*
     * 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, ...)
    
    Luigi Rizzo's avatar
    Luigi Rizzo committed
    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)
    
    Luigi Rizzo's avatar
    Luigi Rizzo committed
    	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;
    }