aboutsummaryrefslogtreecommitdiff
path: root/core/os/pipe_wasi.odin
blob: e27c9419e01f9135e915be1591aa2f027fc31acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#+private
package os

_pipe :: proc() -> (r, w: ^File, err: Error) {
	err = .Unsupported
	return
}

@(require_results)
_pipe_has_data :: proc(r: ^File) -> (ok: bool, err: Error) {
	err = .Unsupported
	return
}