mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 09:52:23 -07:00
11 lines
143 B
Odin
11 lines
143 B
Odin
//+private
|
|
package os2
|
|
|
|
import "base:runtime"
|
|
|
|
|
|
_temp_dir :: proc(allocator: runtime.Allocator) -> (string, Error) {
|
|
//TODO
|
|
return "", nil
|
|
}
|