Mercurial > lcfOS
diff kernel/io.c3 @ 410:6aa9743ed362 tip
Reflect change in c3 public modifier
author | Windel Bouwman |
---|---|
date | Mon, 23 Feb 2015 21:06:04 +0100 |
parents | 0fb6633c42f6 |
children |
line wrap: on
line diff
--- a/kernel/io.c3 Sat Feb 21 12:17:47 2015 +0100 +++ b/kernel/io.c3 Mon Feb 23 21:06:04 2015 +0100 @@ -1,7 +1,7 @@ module io; import arch; -function void println(string txt) +public function void println(string txt) { print(txt); arch.putc(10); // Newline! @@ -44,7 +44,7 @@ arch.putc(10); // Newline! } -function void print2(string label, int value) +public function void print2(string label, int value) { print(label); print_int(value);