mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 03:32:37 +00:00
9 lines
175 B
Odin
9 lines
175 B
Odin
#+build freestanding
|
|
#+private
|
|
package runtime
|
|
|
|
// TODO(bill): reimplement `os.write`
|
|
_stderr_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
|
|
return 0, -1
|
|
}
|