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/testelf | |
parent | 4c8caaec8e856686581feb0a84089cdad07a0018 (diff) |
user/shell: make the builtins handle multiple args; misc fixes
Diffstat (limited to 'src/user/app/testelf')
-rw-r--r-- | src/user/app/testelf/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/testelf/main.c b/src/user/app/testelf/main.c index aa1f596..ee7465b 100644 --- a/src/user/app/testelf/main.c +++ b/src/user/app/testelf/main.c @@ -2,7 +2,7 @@ const char *str = "Hello!", *str2 = "World."; -int main(int argc, char **argv, char **envp) { +int main(int argc, char **argv) { printf("elftest's &main == 0x%x\n", &main); printf("%s %s\n", str, str2); printf("argc == %u\n", argc); |