Remove runtime.os_stdout, since it is not required by the runtime

This commit is contained in:
gingerBill
2020-09-15 14:16:44 +01:00
parent c9dcb7242f
commit 2475c69f00
2 changed files with 0 additions and 6 deletions

View File

@@ -6,9 +6,6 @@ import "core:os"
_OS_Errno :: distinct int;
_OS_Handle :: os.Handle;
os_stdout :: proc "contextless" () -> _OS_Handle {
return os.stdout;
}
os_stderr :: proc "contextless" () -> _OS_Handle {
return os.stderr;
}

View File

@@ -4,9 +4,6 @@ package runtime
_OS_Errno :: distinct int;
_OS_Handle :: distinct uintptr;
os_stdout :: proc "contextless" () -> _OS_Handle {
return 1;
}
os_stderr :: proc "contextless" () -> _OS_Handle {
return 2;
}