diff options
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/command.h b/src/command.h index 2692c6b58..247bce573 100644 --- a/src/command.h +++ b/src/command.h @@ -21,6 +21,8 @@ #include "../config.h" +#include "list.h" + #include <stdio.h> #define COMMAND_RETURN_KILL 10 @@ -30,7 +32,7 @@ #define COMMAND_RESPOND_OK "OK" int processCommand(FILE * fp, unsigned int * permission, int argArrayLength, - char ** argArray); + char ** argArray, ListNode * commandNode); void initCommands(); |