mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
8 lines
162 B
Odin
8 lines
162 B
Odin
//+build freestanding
|
|
package runtime
|
|
|
|
// TODO(bill): reimplement `os.write`
|
|
_os_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
|
|
return 0, -1
|
|
}
|