diff options
| author | 2023-06-04 10:50:54 +0200 | |
|---|---|---|
| committer | 2023-06-04 10:50:54 +0200 | |
| commit | 9201488618d7f9a51689d7369132223b286004c2 (patch) | |
| tree | 5ba6ec8012123300dd2ea6536e3134d04634bf54 /test.c | |
| parent | 2075cfc9b395b413de1a540f6262e7b994907bee (diff) | |
support calling undeclared functions
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); } + // |