diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-29 14:18:12 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 12:44:13 +0100 |
| commit | c0da9be4a9e216d1c050c8b5c000a34f87c5a004 (patch) | |
| tree | 40c065f9c8d3647229f379477212c90942bfd17f /core | |
| parent | a4970191724182a14a4000c60c9a0677b7fa570d (diff) | |
core:text/table -> core:os/os2
Diffstat (limited to 'core')
| -rw-r--r-- | core/text/table/utility.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/text/table/utility.odin b/core/text/table/utility.odin index 0e56fd968..99fd7d7ca 100644 --- a/core/text/table/utility.odin +++ b/core/text/table/utility.odin @@ -1,11 +1,11 @@ package text_table -import "core:io" -import "core:os" -import "core:strings" +import "core:io" +import os "core:os/os2" +import "core:strings" stdio_writer :: proc() -> io.Writer { - return io.to_writer(os.stream_from_handle(os.stdout)) + return os.stdout.stream } strings_builder_writer :: proc(b: ^strings.Builder) -> io.Writer { |