aboutsummaryrefslogtreecommitdiff
path: root/core/os/temp_file_js.odin
blob: 32ce1c484c9e69e42bc08554f8bb27b149bb391d (plain)
1
2
3
4
5
6
7
8
9
#+build js wasm32, js wasm64p32
#+private
package os

import "base:runtime"

_temp_dir :: proc(allocator: runtime.Allocator) -> (string, runtime.Allocator_Error) {
	return "", .Mode_Not_Implemented
}