From c510603cedcd3e39681ae38560f62adc9d70a53b Mon Sep 17 00:00:00 2001 From: dzwdz Date: Wed, 3 Aug 2022 15:20:19 +0200 Subject: user/shell: make the builtins handle multiple args; misc fixes --- src/user/app/testelf/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/user/app/testelf') 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); -- cgit v1.2.3