getting tests to run

This commit is contained in:
Jason Kercher
2022-03-10 11:12:06 -05:00
parent b91c0ec715
commit 0b61215f7b
5 changed files with 54 additions and 12 deletions
-5
View File
@@ -36,11 +36,6 @@ _std_handle :: proc(kind: Std_Handle_Kind) -> Handle {
unreachable()
}
_opendir :: proc(path: string) -> (handle: Handle, err: Error) {
return INVALID_HANDLE, .Invalid_Argument
}
_open :: proc(path: string, flags: File_Flags, perm: File_Mode) -> (handle: Handle, err: Error) {
handle = INVALID_HANDLE
if len(path) == 0 {