diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-19 18:16:29 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-19 18:16:29 -0800 |
commit | 0923bb131b650ad22a4fc0e5b7b42d71965efa8f (patch) | |
tree | db0466158dfc61c9cb9eaff2f2e44ebde6573170 /tests/hello_world_exit.c | |
parent | 6803303246fd803a8c403d2ed6fefa374e7ccc1c (diff) | |
parent | e98f5e310df4e255fc08213865f1cbd8e4d75d89 (diff) |
Merge pull request #1932 from juj/emrun_argc_argv
Implement command line passing to work to emrun when --emrun is passed.
Diffstat (limited to 'tests/hello_world_exit.c')
-rw-r--r-- | tests/hello_world_exit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/hello_world_exit.c b/tests/hello_world_exit.c index febecc65..8932caf2 100644 --- a/tests/hello_world_exit.c +++ b/tests/hello_world_exit.c @@ -1,7 +1,13 @@ #include<stdio.h> #include<stdlib.h> -int main() { +int main(int argc, char **argv) { + printf("argc: %d\n", argc); + for(int i = 0; i < argc; ++i) { + printf("argv[%d]: %s\n", i, argv[i]); + } + if (argc <= 1) + exit(1); printf("hello, world!\n"); fprintf(stderr, "hello, error stream!\n"); exit(100); |