From 6d800ca8bac8ea0b9eae255833273c90d0108eb9 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Mon, 13 Jul 2020 19:28:05 -0400 Subject: simplify varargs for --- tests/ptr_arithmetic.toc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/ptr_arithmetic.toc') diff --git a/tests/ptr_arithmetic.toc b/tests/ptr_arithmetic.toc index 05975e8..521bdd2 100644 --- a/tests/ptr_arithmetic.toc +++ b/tests/ptr_arithmetic.toc @@ -1,4 +1,4 @@ -#include "std/io.toc"; +#include "std/io.toc", io; #include "std/mem.toc"; ptr_arithmetic_test ::= fn() total := 0 { @@ -28,6 +28,6 @@ ptr_arithmetic_test ::= fn() total := 0 { main ::= fn() { x ::= ptr_arithmetic_test(); y := ptr_arithmetic_test(); - puti(x); - puti(y); + io.puti(x); + io.puti(y); } -- cgit v1.2.3