summaryrefslogtreecommitdiff
path: root/tests/arr2/arr2.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-02-25 20:35:46 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-02-25 20:35:46 -0500
commit19eafbc01a492e8f1df25cef52678ed8f76d3e63 (patch)
treee818784215d9f7873e9495f003dd4cdaa09d5b63 /tests/arr2/arr2.toc
parentb1c2b4bcabfd3ff01921e2601d41a33b40ec1f3b (diff)
fixed bugs with new arg order system
also now struct parameters are "officially" part of the language
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);
");
};