mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Move core:runtime to base:runtime; keep alias around
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
//+build !darwin
|
||||
//+build !freestanding
|
||||
//+build !js
|
||||
//+build !wasi
|
||||
//+build !windows
|
||||
package runtime
|
||||
|
||||
import "core:os"
|
||||
|
||||
// TODO(bill): reimplement `os.write` so that it does not rely on package os
|
||||
// NOTE: Use os_specific_linux.odin, os_specific_darwin.odin, etc
|
||||
_os_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
|
||||
context = default_context()
|
||||
n, err := os.write(os.stderr, data)
|
||||
return int(n), _OS_Errno(err)
|
||||
}
|
||||
Reference in New Issue
Block a user