diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-29 14:11:14 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 12:44:12 +0100 |
| commit | a4970191724182a14a4000c60c9a0677b7fa570d (patch) | |
| tree | 02b359e902cf39fdf39fc2a66dadec15ecfd8e0d | |
| parent | 586355f4ac7f308b8a304078fbb15191ffbba952 (diff) | |
core:text/regex -> core:os/os2
| -rw-r--r-- | core/text/regex/common/debugging.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/text/regex/common/debugging.odin b/core/text/regex/common/debugging.odin index 1a241e136..e3fcb8b7e 100644 --- a/core/text/regex/common/debugging.odin +++ b/core/text/regex/common/debugging.odin @@ -8,14 +8,14 @@ package regex_common Feoramund: Initial implementation. */ -@require import "core:os" +@require import os "core:os/os2" import "core:io" import "core:strings" ODIN_DEBUG_REGEX :: #config(ODIN_DEBUG_REGEX, false) when ODIN_DEBUG_REGEX { - debug_stream := os.stream_from_handle(os.stderr) + debug_stream := os.stderr.stream } write_padded_hex :: proc(w: io.Writer, #any_int n, zeroes: int) { |