fix assumption about std handles in os2/file.odin

This commit is contained in:
jason
2024-06-28 07:55:33 -04:00
parent a15cbc474d
commit dc954307d7
2 changed files with 7 additions and 5 deletions
+4
View File
@@ -49,6 +49,10 @@ _standard_stream_init :: proc() {
_stdin.stream.data = &_stdin
_stdout.stream.data = &_stdout
_stderr.stream.data = &_stderr
stdin = &_stdin
stdout = &_stdout
stderr = &_stderr
}
_file_allocator :: proc() -> runtime.Allocator {