diff options
Diffstat (limited to 'test/hello.c')
| -rw-r--r-- | test/hello.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hello.c b/test/hello.c index 98a93a0..17affa8 100644 --- a/test/hello.c +++ b/test/hello.c @@ -1,5 +1,5 @@ int printf(const char *, ...); -int main() { - printf("hello world\n"); +int main(int argc) { + return 42; } |