mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-17 11:22:22 -07:00
12 lines
228 B
Odin
12 lines
228 B
Odin
//+build freestanding
|
|
package runtime
|
|
|
|
// TODO(bill): reimplement `os.write`
|
|
os_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
|
|
return 0, -1;
|
|
}
|
|
|
|
current_thread_id :: proc "contextless" () -> int {
|
|
return 0;
|
|
}
|