From 0be8d5c64cf1a59d5de04c7c7c24f6624b95eede Mon Sep 17 00:00:00 2001 From: Matthew Jordan Date: Tue, 2 Oct 2012 20:45:22 +0000 Subject: Modify hashtest2 to compile after r374213. Someone, somewhere, may care. Because hashtest2 has to provide symbols for things in asterisk that items it includes may use, when astobj2 decided to use ast_register_atexit it needed to provide a declaration for that as well. Otherwise - no linky. On a related note, ASTERISK-20505 was filed to convert hashtest/hashtest2 into actual unit tests, so we don't run into this problem again. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@374229 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils/hashtest2.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'utils') diff --git a/utils/hashtest2.c b/utils/hashtest2.c index 47397101e..e5b771798 100644 --- a/utils/hashtest2.c +++ b/utils/hashtest2.c @@ -357,6 +357,12 @@ void ast_unregister_file_version(const char *file) } +int ast_register_atexit(void (*func)(void)); +int ast_register_atexit(void (*func)(void)) +{ + return 0; +} + void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...) { va_list vars; -- cgit v1.2.3