mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-28 17:23:57 +00:00
10 lines
257 B
Odin
10 lines
257 B
Odin
#+private
|
|
package os
|
|
|
|
import "base:runtime"
|
|
|
|
_temp_dir :: proc(allocator: runtime.Allocator) -> (string, runtime.Allocator_Error) {
|
|
// NOTE: requires user to add /tmp to their preopen dirs, no standard way exists.
|
|
return clone_string("/tmp", allocator)
|
|
}
|