From 86625b1166bd39e28b4dd4995ed6cd88c0bdde7e Mon Sep 17 00:00:00 2001 From: lemon Date: Tue, 6 Jun 2023 15:08:46 +0200 Subject: codegen skeleton --- test/hello.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/hello.c') 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; } -- cgit v1.2.3