Files
Odin/core/os/os2/temp_file_linux.odin
T
2024-07-30 18:11:44 +02:00

14 lines
287 B
Odin

//+private
package os2
import "base:runtime"
_temp_dir :: proc(allocator: runtime.Allocator) -> (string, runtime.Allocator_Error) {
TEMP_ALLOCATOR_GUARD()
tmpdir := get_env("TMPDIR", temp_allocator())
if tmpdir == "" {
tmpdir = "/tmp"
}
return clone_string(tmpdir, allocator)
}