diff options
author | dzwdz | 2022-08-03 15:20:19 +0200 |
---|---|---|
committer | dzwdz | 2022-08-03 15:20:19 +0200 |
commit | c510603cedcd3e39681ae38560f62adc9d70a53b (patch) | |
tree | bd8f61274f0e85d6cd1b0814058b6a7eeca07f3b /src/user/app/shell/builtins.h | |
parent | 4c8caaec8e856686581feb0a84089cdad07a0018 (diff) |
user/shell: make the builtins handle multiple args; misc fixes
Diffstat (limited to 'src/user/app/shell/builtins.h')
-rw-r--r-- | src/user/app/shell/builtins.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/shell/builtins.h b/src/user/app/shell/builtins.h index aa2cd8c..1e422bb 100644 --- a/src/user/app/shell/builtins.h +++ b/src/user/app/shell/builtins.h @@ -4,7 +4,7 @@ struct builtin { const char *name; - void (*fn)(int argc, const char **argv); + void (*fn)(int argc, char **argv); }; extern struct builtin builtins[]; |