AST_MUTEX_DEFINE_STATIC(maxcalllock);
static int countcalls = 0;
-AST_LIST_HEAD_STATIC(acf_root, ast_custom_function);
+static AST_LIST_HEAD_STATIC(acf_root, ast_custom_function);
/*! \brief Declaration of builtin applications */
static struct pbx_builtin {
static struct ast_context *contexts = NULL;
AST_MUTEX_DEFINE_STATIC(conlock); /*!< Lock for the ast_context list */
-AST_LIST_HEAD_STATIC(apps, ast_app);
+static AST_LIST_HEAD_STATIC(apps, ast_app);
struct ast_switch *switches = NULL;
AST_MUTEX_DEFINE_STATIC(switchlock); /*!< Lock for switches */
AST_LIST_ENTRY(dundi_peer) list;
};
-AST_LIST_HEAD_STATIC(peers, dundi_peer);
-AST_LIST_HEAD_STATIC(pcq, dundi_precache_queue);
-AST_LIST_HEAD_NOLOCK_STATIC(mappings, dundi_mapping);
-AST_LIST_HEAD_NOLOCK_STATIC(requests, dundi_request);
-AST_LIST_HEAD_NOLOCK_STATIC(alltrans, dundi_transaction);
+static AST_LIST_HEAD_STATIC(peers, dundi_peer);
+static AST_LIST_HEAD_STATIC(pcq, dundi_precache_queue);
+static AST_LIST_HEAD_NOLOCK_STATIC(mappings, dundi_mapping);
+static AST_LIST_HEAD_NOLOCK_STATIC(requests, dundi_request);
+static AST_LIST_HEAD_NOLOCK_STATIC(alltrans, dundi_transaction);
static int dundi_xmit(struct dundi_packet *pack);