these functions never should have been non-static or in a header file

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43313 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-09-20 05:01:03 +00:00
parent 32d119746c
commit 505c465a3b
2 changed files with 2 additions and 6 deletions

View File

@@ -63,8 +63,4 @@ int ast_monitor_pause(struct ast_channel *chan);
/* Unpause monitoring of a channel */
int ast_monitor_unpause(struct ast_channel *chan);
int pause_monitor_exec(struct ast_channel *chan, void *data);
int unpause_monitor_exec(struct ast_channel *chan, void *data);
#endif /* _ASTERISK_MONITOR_H */

View File

@@ -323,12 +323,12 @@ int ast_monitor_unpause(struct ast_channel *chan)
return ast_monitor_set_state(chan, AST_MONITOR_RUNNING);
}
int pause_monitor_exec(struct ast_channel *chan, void *data)
static int pause_monitor_exec(struct ast_channel *chan, void *data)
{
return ast_monitor_pause(chan);
}
int unpause_monitor_exec(struct ast_channel *chan, void *data)
static int unpause_monitor_exec(struct ast_channel *chan, void *data)
{
return ast_monitor_unpause(chan);
}