Get env stuff working on Windows

This commit is contained in:
gingerBill
2022-02-21 12:35:52 +00:00
parent 14cb19c2df
commit 345032f804
6 changed files with 112 additions and 86 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ _open :: proc(name: string) -> (Handle, Error) {
return 0, nil
}
_open_file :: proc(name: string, flag: int, perm: File_Mode) -> (Handle, Error) {
_open_file :: proc(name: string, flags: File_Flags, perm: File_Mode) -> (Handle, Error) {
return 0, nil
}