aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-06-04 10:50:54 +0200
committerlemon <lsof@mailbox.org>2023-06-04 10:50:54 +0200
commit9201488618d7f9a51689d7369132223b286004c2 (patch)
tree5ba6ec8012123300dd2ea6536e3134d04634bf54 /test.c
parent2075cfc9b395b413de1a540f6262e7b994907bee (diff)
support calling undeclared functions
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test.c b/test.c
index a2a1a7c..670c7c6 100644
--- a/test.c
+++ b/test.c
@@ -62,5 +62,7 @@ void fill(char *p, int c, unsigned long n)
if (n) do t = *p++ = c; while (--n);
}
+main(t) { putc(t); }
+
//