diff options
Diffstat (limited to 'src/core/cs_status.c')
-rw-r--r-- | src/core/cs_status.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/cs_status.c b/src/core/cs_status.c index efbe4ba29..7d417b261 100644 --- a/src/core/cs_status.c +++ b/src/core/cs_status.c @@ -14,8 +14,8 @@ #include "module.h" -int do_status(User * u); -void myChanServHelp(User * u); +static int do_status(User * u); +static void myChanServHelp(User * u); /** * Create the command, and tell anope about it. @@ -55,7 +55,7 @@ void AnopeFini(void) * Add the help response to anopes /cs help output. * @param u The user who is requesting help **/ -void myChanServHelp(User * u) +static void myChanServHelp(User * u) { if (is_services_admin(u)) { notice_lang(s_ChanServ, u, CHAN_HELP_CMD_STATUS); @@ -67,7 +67,7 @@ void myChanServHelp(User * u) * @param u The user who issued the command * @param MOD_CONT to continue processing other modules, MOD_STOP to stop processing. **/ -int do_status(User * u) +static int do_status(User * u) { ChannelInfo *ci; User *u2; |