mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-31 10:22:08 +00:00
9 lines
177 B
Odin
9 lines
177 B
Odin
//+build freestanding
|
|
//+private
|
|
package runtime
|
|
|
|
// TODO(bill): reimplement `os.write`
|
|
_stderr_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
|
|
return 0, -1
|
|
}
|