aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/utils.h')
-rwxr-xr-xinclude/asterisk/utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h
index 93f99432a..bfbdd951c 100755
--- a/include/asterisk/utils.h
+++ b/include/asterisk/utils.h
@@ -41,6 +41,7 @@ extern int ast_utils_init(void);
#ifdef LINUX
#define ast_pthread_create pthread_create
+#define ast_strcasestr strcasestr
#else
/* Linux threads have a default 2MB stack size. */
#ifndef PTHREAD_ATTR_STACKSIZE
@@ -49,4 +50,6 @@ extern int ast_utils_init(void);
extern int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data);
#endif /* LINUX */
+extern char *ast_strcasestr(const char *, const char *);
+
#endif