diff options
-rw-r--r-- | tests/test-progs/hello/src/hello.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test-progs/hello/src/hello.c b/tests/test-progs/hello/src/hello.c index be6ec83c3..4488f4e5f 100644 --- a/tests/test-progs/hello/src/hello.c +++ b/tests/test-progs/hello/src/hello.c @@ -30,8 +30,9 @@ #include <stdio.h> -int main() +int main(int argc, char* argv[]) { printf("Hello world!\n"); + return 0; } |