summaryrefslogtreecommitdiff
path: root/miniany/hello.c
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-09-06 16:00:12 +0000
committerAndreas Baumann <mail@andreasbaumann.cc>2021-09-06 16:00:12 +0000
commita8eeffaef662df8e9b174b5c484df95ecdba6a9e (patch)
treeeb3cf3e1c62314dde49d66ef6fceba3343c328d8 /miniany/hello.c
parent660a0c3c89090548ff9ea5802eb3325dc1432727 (diff)
downloadcompilertests-a8eeffaef662df8e9b174b5c484df95ecdba6a9e.tar.gz
compilertests-a8eeffaef662df8e9b174b5c484df95ecdba6a9e.tar.bz2
c4 is freestanding now
Diffstat (limited to 'miniany/hello.c')
-rw-r--r--miniany/hello.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/miniany/hello.c b/miniany/hello.c
index ab06506..062ab5f 100644
--- a/miniany/hello.c
+++ b/miniany/hello.c
@@ -2,6 +2,7 @@
int main()
{
- printf("hello, world\n");
+ putstring("hello, world");
+ putnl();
return 0;
}