Merge pull request #1526 from odin-lang/freestanding_amd64

Freestanding target for amd64
This commit is contained in:
gingerBill
2022-03-14 11:09:52 +00:00
committed by GitHub
19 changed files with 456 additions and 151 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ read_console :: proc(handle: win32.HANDLE, b: []byte) -> (n: int, err: Errno) {
if max_read == 0 {
break
}
single_read_length: u32
ok := win32.ReadConsoleW(handle, &buf16[0], max_read, &single_read_length, nil)
if !ok {