diff options
Diffstat (limited to 'src/user/app/testelf/main.c')
-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); |