diff options
| author | 2023-06-06 15:08:46 +0200 | |
|---|---|---|
| committer | 2023-06-06 15:08:46 +0200 | |
| commit | 86625b1166bd39e28b4dd4995ed6cd88c0bdde7e (patch) | |
| tree | 2bfd67ddc7e3b4bb4c4a3d951dfc80fac7c4bad3 /test/hello.c | |
| parent | 3388975ee3a0814e9c95863035ab0d122174c549 (diff) | |
codegen skeleton
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; } |