summaryrefslogtreecommitdiff
path: root/tests/arr2/arr2.toc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arr2/arr2.toc')
-rw-r--r--tests/arr2/arr2.toc10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/arr2/arr2.toc b/tests/arr2/arr2.toc
index e28d355..e016cf2 100644
--- a/tests/arr2/arr2.toc
+++ b/tests/arr2/arr2.toc
@@ -1,10 +1,16 @@
puti ::= fn(x: int) {
- #C("extern int printf(const char *fmt, ...)");
+#C("#ifndef __TINYC__
+extern int printf(const char *fmt, ...);
+#endif
+");
#C("printf(\"%ld\\n\", (long)x);
");
};
putf ::= fn(x: float) {
- #C("extern int printf(const char *fmt, ...)");
+#C("#ifndef __TINYC__
+extern int printf(const char *fmt, ...);
+#endif
+");
#C("printf(\"%f\\n\", (double)x);
");
};