diff options
Diffstat (limited to 'src/core/os_raw.c')
-rw-r--r-- | src/core/os_raw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/os_raw.c b/src/core/os_raw.c index 143523c9b..ff229d829 100644 --- a/src/core/os_raw.c +++ b/src/core/os_raw.c @@ -14,7 +14,7 @@ #include "module.h" -int do_raw(User * u); +static int do_raw(User * u); /** * Create the command, and tell anope about it. @@ -55,7 +55,7 @@ void AnopeFini(void) * @param u The user who issued the command * @param MOD_CONT to continue processing other modules, MOD_STOP to stop processing. **/ -int do_raw(User * u) +static int do_raw(User * u) { char *text = strtok(NULL, ""); if (!text) |