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> | 2025-10-29 14:11:14 +0100 |
| commit | edeb8065ffd9257bf573c184b3b991984d97ab9a (patch) | |
| tree | cda7f97d741fedbb0ec13787385a8dfdb3925f7b | |
| parent | a65b53a7ab0f8e1c8d38221aa3e87062b0170f00 (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 0e4161a92..f0d34c112 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) { |